Skip to content

Instantly share code, notes, and snippets.

@ptquang86
Created March 27, 2012 06:38
Show Gist options
  • Save ptquang86/2213376 to your computer and use it in GitHub Desktop.
Save ptquang86/2213376 to your computer and use it in GitHub Desktop.
Titanium - Gradient Button
Ti.UI.createButton({
width: 100,
height: 30,
title: 'Edit Profile',
font: { fontSize: 14 },
borderRadius: 5,
borderColor: 'blue',
style:Titanium.UI.iPhone.SystemButtonStyle.PLAIN,
backgroundGradient:{
type:'linear',
colors:[{color:'#4A97F6', position:0.0}, {color:'#1F6CE5', position:1.0}],
backFillStart: false
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment