vetri02
vetri02

Reputation: 3299

Where can i find good resources for building custom ui for titanium apps

Where can i find good resources for building custom ui for titanium apps like triplingo app

Upvotes: 1

Views: 1205

Answers (2)

UXE
UXE

Reputation: 2374

There are couple of tutorials Appcelerator provided for custom UI development:

  1. Custom UI Components
  2. Building an Advanced Transaction UI with Titanium

I recommend you watch the forging titanium video series for more advanced techniques HERE

Upvotes: 2

Josiah Hester
Josiah Hester

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

Related Questions