Reputation: 3299
Where can i find good resources for building custom ui for titanium apps like triplingo app
Upvotes: 1
Views: 1205
Reputation: 2374
There are couple of tutorials Appcelerator provided for custom UI development:
I recommend you watch the forging titanium video series for more advanced techniques HERE
Upvotes: 2
Reputation: 6095
If your looking for custom UI, you obviously, need to hire a designer fluent in Photoshop, Illustrator or whatever graphics program.
If your looking for code to style said apps, then look no further than the docs, specifically the backgroundImage
attribute of every view in titanium.
For example to style a custom button, do this:
var more_btn = Ti.UI.createButton({
backgroundImage : 'More-1.png', // Custom UI
backgroundFocusedImage : 'More-2.png', // Custom UI when clicked
top : 271,
left : 173,
width : 135,
height : 40
});
Upvotes: 1