andresbelt commented on issue #164:
URL:
https://github.com/apache/cordova-plugin-statusbar/issues/164#issuecomment-629899193
for me works this
if( this.style == 'dark') {
this.statusBar.backgroundColorByHexString('#000000');
this.statusBar.styleDefault()
}else{
this.statusBar.backgroundColorByHexString('#ffffff');
this.statusBar.styleLightContent();
}
But I change this line in CDVStatusBar.m in my xcode project
- (void) styleLightContent:(CDVInvokedUrlCommand*)command
{
[self setStyleForStatusBar:UIStatusBarStyleDarkContent]; ---> this
UIStatusBarStyleDarkContent for ios 13.0
}
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]