# tabris-js **Repository Path**: findroot/tabris-js ## Basic Information - **Project Name**: tabris-js - **Description**: No description available - **Primary Language**: Unknown - **License**: BSD-3-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-09-15 - **Last Updated**: 2023-06-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Tabris.js [![Build Status](https://travis-ci.org/eclipsesource/tabris-js.svg?branch=master)](https://travis-ci.org/eclipsesource/tabris-js) [![Slack Status](https://tabrisjs.herokuapp.com/badge.svg)](https://tabrisjs.herokuapp.com) Tabris.js is a framework for developing mobile apps with native UIs in JavaScript. iOS and Android apps can be built entirely from one code base, which frees you from the task of managing code for multiple platforms. ![Tabris.js hello world](doc/img/hello-example.png) ```jsx import {Button, contentView, TextView} from 'tabris'; // in JS new Button({top: 16, centerX: true, text: 'Use native UI'}) .onSelect(() => $(TextView).only().text = 'Powered by Tabris.js') .appendTo(contentView); new TextView({top: 'prev() 16', centerX: true}) .appendTo(contentView); // or in JSX contentView.append( <$>