user310291
user310291

Reputation: 38228

Does and how does Titanium convert css to native?

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

Answers (1)

Paul Annekov
Paul Annekov

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

Related Questions