Can I set style sheet for controls in appcelerator. Or can I set predefined common style and used it for many controls?
2 Answers
Accepted Answer
You can also read about JSS
You can create function that does that.
function MyBlueView(options) { if(!options) { options = {}; } options.backgroundColor = '#00f'; return Ti.UI.createView(options); }
Your Answer
Think you can help? Login to answer this question!