Skip to content

Instantly share code, notes, and snippets.

@deguchi
Created January 4, 2011 03:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save deguchi/764343 to your computer and use it in GitHub Desktop.
Save deguchi/764343 to your computer and use it in GitHub Desktop.
Titanium sample on CoffeeScript
Titanium.UI.setBackgroundColor '#000'
tabGroup = Titanium.UI.createTabGroup()
win1 = Titanium.UI.createWindow
title:'Tab 1'
backgroundColor:'#fff'
tab1 = Titanium.UI.createTab
icon:'KS_nav_views.png'
title:'Tab 1'
window:win1
label1 = Titanium.UI.createLabel
color:'#999'
text:'I am Window 1'
font:
fontSize:20
fontFamily:'Helvetica Neue'
textAlign:'center'
width:'auto'
win1.add label1
win2 = Titanium.UI.createWindow
title:'Tab 2'
backgroundColor:'#fff'
tab2 = Titanium.UI.createTab
icon:'KS_nav_ui.png'
title:'Tab 2'
window:win2
label2 = Titanium.UI.createLabel
color:'#999'
text:'I am Window 2'
font:
fontSize:20
fontFamily:'Helvetica Neue'
textAlign:'center'
width:'auto'
win2.add label2
tabGroup.addTab tab1
tabGroup.addTab tab2
tabGroup.open()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment