Skip to content

Instantly share code, notes, and snippets.

@srahim
Created April 29, 2013 21:54
Show Gist options
  • Save srahim/5485115 to your computer and use it in GitHub Desktop.
Save srahim/5485115 to your computer and use it in GitHub Desktop.
app.js for test one - TIMOB-13712
var win = Ti.UI.createWindow();
var button = Titanium.UI.createButton({
title: 'Hello',
top: 10,
width: 100,
height: 50
});
win.add(button);
win.open();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment