skip to Main Content

Javascript – cordova plugin statusbar not working on Android 13 why?

I am using cordova-plugin-statusbar to change statusbar background color and statusbar text color but its not working on Android 13 I have added cordova-plugin-statusbar then i have used this code document.addEventListener('deviceready', SetStatusBarColor, false); function SetStatusBarColor() { StatusBar.overlaysWebView(false); StatusBar.backgroundColorByHexString("#ffffff"); // Set…

VIEW QUESTION
Back To Top
Search