0

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.

Community
  • 1
  • 1
user310291
  • 36,946
  • 82
  • 271
  • 487

1 Answers1

1

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.

Paul Annekov
  • 3,193
  • 3
  • 19
  • 31