Reputation: 38228
I read the explanation here about how titanium convert js to native - though there is an interpreter for dynamic parts:
How Does Appcelerator Titanium Mobile Work?
What about CSS ? I can't see how css could be mapped in native.
Upvotes: 0
Views: 894
Reputation: 3273
Last Titanium SDK doesn't support CSS. You can use css in WebView, but not for other components.
As alternative - create module and add all your styles to it. Then include this module to any js file and use it's styles. You can read about modules here.
Upvotes: 1