Reputation: 1268
I want to color my Statusbar text white. This is no problem when i have an Actionbar, but when i set the actionbar to hidden, the color is black again.
This is the code i used:
<page actionBarHidden="true" backgroundSpanUnderStatusBar="true"></page>
And this is the javascript code:
var navigationBar = frameModule.topmost().ios.controller.navigationBar;
navigationBar.barStyle = 1;
Question: How to color the statusbar when there is no actionbar?
Upvotes: 1
Views: 388
Reputation: 1919
You could find solution of this behavior in this GitHub issue:here
Upvotes: 1