I added the cordova statusbar plugin and set the config.xml with the lightcontent property but it doesn’t seem to do anything to my statusbar which still shows up as black text. How can I change it to white? Am I doing it incorrectly?
<content src="index.html"/>
<access origin="*"/>
<preference name="webviewbounce" value="false"/>
<preference name="UIWebViewBounce" value="false"/>
<preference name="DisallowOverscroll" value="true"/>
<preference name="BackupWebStorage" value="none"/>
<preference name="StatusBarStyle" value="lightcontent" />
<preference name="KeyboardDisplayRequiresUserAction" value="false"/>
<feature name="StatusBar">
<param name="ios-package" value="CDVStatusBar" onload="true"/>
</feature>
<feature name="Keyboard">
<param name="ios-package" value="IonicKeyboard" onload="true" />
</feature>