doginthehat commented on issue #204: URL: https://github.com/apache/cordova-plugin-statusbar/issues/204#issuecomment-730328808
I'm getting the same issue as @HusFNS and can't get it to display correctly. I've tried all the options from #148 but it doesn't help. There is actually a fix in current master that resolves the problem https://github.com/apache/cordova-plugin-statusbar/blob/29283396113ab1c46d36b61f397f5cdde32686f7/src/ios/CDVStatusBar.m#L303 but it's not published into a release yet. Not sure if anyone from repo is watching this issue but it would be great if it could be published. Additionally, the following function should be made accessible: ``` - (void) styleDarkContent:(CDVInvokedUrlCommand*)command { [self setStyleForStatusBar:3]; } ``` (and the matching in plugin js file) ``` styleDarkContent: function () { exec(null, null, "StatusBar", "styleDarkContent", []); }, ``` Hope this help ---------------------------------------------------------------- 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]
