Github user sinofool commented on a diff in the pull request:

    
https://github.com/apache/cordova-plugin-statusbar/pull/22#discussion_r25553628
  
    --- Diff: doc/index.md ---
    @@ -41,6 +41,10 @@ Preferences
     
             <preference name="StatusBarBackgroundColor" value="#000000" />
     
    +- __AndroidStatusBarBackgroundColor__ (color hex string, defaults to the 
Android theme default). On Android 5 and up, the background color can be set by 
a hex string (#RRGGBB) at startup. We don't use the same property as for iOS 
because on iOS you typically want the statusbar to have the same color as the 
app background, but the Android 5+ guidelines specify using a different color 
than you apps main color, so the value of this property is typically different 
than the one specified by StatusBarBackgroundColor.
    --- End diff --
    
    @EddyVerbruggen Like this?
    <preference name="Fullscreen" value="false" />
    <preference name="Orientation" value="portrait" />
    <platform name="ios">
        <preference name="BackupWebStorage" value="none" />
        <preference name="UIWebViewDecelerationSpeed" value="fast" />
        <preference name="StatusBarOverlaysWebView" value="false" />
        <preference name="StatusBarStyle" value="lightcontent" />
        <preference name="StatusBarBackgroundColor" value="#000000" />
    </platform>
    <platform name="android">
        <preference name="StatusBarBackgroundColor" value="#00FF00" />
    </platform>


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
For additional commands, e-mail: dev-h...@cordova.apache.org

Reply via email to