Skip to content

Instantly share code, notes, and snippets.

@juno
Created February 20, 2012 04:11
Show Gist options
  • Save juno/1867800 to your computer and use it in GitHub Desktop.
Save juno/1867800 to your computer and use it in GitHub Desktop.
Ti.Facebook.BUTTON_STYLE_WIDE with Android / http://journal.sooey.com/188
# create a 'Login with Facebook' button with wide styling
button = Ti.Facebook.createLoginButton
style: 'wide'
# create a 'Login with Facebook' button with wide styling
button = Ti.Facebook.createLoginButton
style: Ti.Facebook.BUTTON_STYLE_WIDE
# determine platform type
isAndroid = (Titanium.Platform.name is 'android')
# create a 'Login with Facebook' button with wide styling
button = Ti.Facebook.createLoginButton
style: if isAndroid then 'wide' else Ti.Facebook.BUTTON_STYLE_WIDE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment