You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by GitBox <gi...@apache.org> on 2019/10/04 21:03:47 UTC

[GitHub] [cordova-plugin-statusbar] GeorgeBark edited a comment on issue #148: iOS 13 dark mode default text colour is white

GeorgeBark edited a comment on issue #148: iOS 13 dark mode default text colour is white
URL: https://github.com/apache/cordova-plugin-statusbar/issues/148#issuecomment-538558631
 
 
   > Adding the following to my config.xml worked for me as a workaround:
   > 
   > ```
   > <config-file parent="UIUserInterfaceStyle" platform="ios" target="*-Info.plist">
   >     <string>Light</string>
   > </config-file>
   > ```
   
   For me what worked was adding in the config.xml:
   
   ```xml
   <widget>
     ...
     <platform name="ios">
       ...
       <edit-config file="*-Info.plist" mode="merge" target="UIUserInterfaceStyle">
         <string>Light</string>
       </edit-config>
     </platform>
   <widget>
   ```
   
   *Edit:* Doesn't seem to work on the splash screen though

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org