Skip to content

Instantly share code, notes, and snippets.

@srahim
Last active August 29, 2015 13:56
Show Gist options
  • Save srahim/9102066 to your computer and use it in GitHub Desktop.
Save srahim/9102066 to your computer and use it in GitHub Desktop.
var win = Titanium.UI.createWindow({
backgroundColor:"white",
title:"blah"
});
Ti.API.info("Titanium.buildDate" + Titanium.buildDate);
var data = 'Build: ' + Titanium.version + ' HASH :: ' + Titanium.buildHash + ' ( BUILD DATE :: ' + Titanium.buildDate + ')\n';
var label = Titanium.UI.createLabel({
text:data,
top:20,
textAlign:'left',
width:'auto',
height:'auto'
});
win.add(label);
win.open();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment