All Downloads are FREE. Search and download functionalities are using the official Maven repository.

template-mobile-hello-world.app.js.template Maven / Gradle / Ivy

const {Button, TextView, ui} = require('tabris');

let button = new Button({
  centerX: 0, top: 100,
  text: 'Show message'
}).appendTo(ui.contentView);

let textView = new TextView({
  centerX: 0, top: [button, 50],
  font: '24px'
}).appendTo(ui.contentView);

button.on('select', () => {
  textView.text = 'Hello Tabris.js on Eclipse Dirigible!';
});




© 2015 - 2025 Weber Informatics LLC | Privacy Policy