R Pelzer
R Pelzer

Reputation: 1268

iOS Statusbar text color when there is no Actionbar

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

Answers (1)

Nikolay Tsonev
Nikolay Tsonev

Reputation: 1919

You could find solution of this behavior in this GitHub issue:here

Upvotes: 1

Related Questions