Skip to content

Instantly share code, notes, and snippets.

@kwhinnery
Created June 24, 2011 15:24
Show Gist options
  • Save kwhinnery/1045017 to your computer and use it in GitHub Desktop.
Save kwhinnery/1045017 to your computer and use it in GitHub Desktop.
var win = Ti.UI.createWindow({
backgroundColor:'white',
layout:'vertical'
});
win.add(Ti.UI.createLabel({
top:10,
text:'Hello World',
color:'black',
height:'auto',
width:'auto',
font: {
fontSize:18
}
}));
win.add(Ti.UI.createView({
top:10,
height:200,
width:200,
backgroundColor:'green'
}));
win.open();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment