Phone gap in-app browser

1
Hi, I have a hybrid app. When I click on an external link in the app, the in-app browser shows a very ugly grey bar. Is there a possibility to change the styling of this bar?
asked
1 answers
1

This is my config xml (adjust your zip package before building with phonegap):

    <!--
  On iOS, the statusbar is transparent by default and is drawn over the top
  of our app.
--> 
<preference name="StatusBarOverlaysWebView" value="false" /> 
<preference name="StatusBarBackgroundColor" value="#000000" />
<preference name="StatusBarStyle" value="lightcontent" />
<preference name="DisallowOverscroll" value="true" />
<preference name="KeyboardDisplayRequiresUserAction" value="false" />

<!-- speciaal voor iOS-->
<preference name="EnableViewportScale" value="false"/>
<gap:plugin name="cordova-plugin-statusbar" source="npm" version="1.0.1" />

see also http://devgirl.org/2014/07/31/phonegap-developers-guid/ for tips

answered