bublikOff opened a new issue, #254:
URL: https://github.com/apache/cordova-plugin-statusbar/issues/254

   Trying to use status bar plugin with cordova@11
   
   config.xml
   ```
       <preference name="StatusBarOverlaysWebView" value="false" />
       <preference name="StatusBarBackgroundColor" value="#ffa726" />
   ```
   
   In html app Im trying to change color manually according to scroll position 
but have no luck. 
   It keeps original #ffa726 color
   
   ```
   if(cordova.platformId == 'android')
   {
       StatusBar.backgroundColorByHexString(page.scrollTop > 30 ?  '#ffff' : 
'#ffa726');
   }
   ```
   
   
   


-- 
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.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to