It looks like things are set up to have just one stylesheet (default.css) for the entire application. Is there any way to have a stylesheet per view controller?
Asked
Active
Viewed 88 times
1 Answers
2
For iOS, you can use the @import
tag in case you wish to organize your CSS better.
The Android version, unfortunately, is lacking this support due to a bug and I hope this will be fixed soon.

sgibly
- 3,828
- 1
- 21
- 21
-
That would have to be imported from default.css though? – Curtis Shipley Jul 16 '14 at 15:48
-
Yes. You will still need the default.css as a connecting point. – sgibly Jul 16 '14 at 21:57
-
I see what you're saying. default.css @imports css files for each screen. I was hoping there was a way to have each screen load its own css file. – Curtis Shipley Jul 16 '14 at 22:38
-
Any updates about having @import working on Android? – Petrus Repo Sep 17 '14 at 12:57