Cordova Slack Digest

Sat, 25 Jun 2022 08:21:24 GMT

User count: 4692

Join the conversation at slack.cordova.io

Channel #cordova-android (1 messages)


Fri, 24 Jun 2022 22:22:46 GMT

@info460 says

Hello, I can set up Fullscreen to True in config, when I swipe up or down I get nice transparent Statusbar+Buttons bar. How to achieve to have such transparent bars without fullscreen? thanks

Channel #general (2 messages)


Fri, 24 Jun 2022 21:07:21 GMT

@harel.mazor says

I‘ve just removed ionic-webview plugin from my codebase due to an issue in iOS of too many events sent when long pressing (and also it’s not well maintained and I need to reduce the dependency of these kind of project). The side effect of that is that I lost all the local storage data. Is there a way to configure something in cordova to bring it back? The host name and protocol or something? Has anyone did it and can give some pointers?

Fri, 24 Jun 2022 21:15:07 GMT

@norman137 says

web storage access is based on the origin. It‘s not lost, it’s just that it creates a new database files for every new origin.

ionic by default for ios uses <ionic://localhost> if I recall correctly, cordova uses <app://localhost>. You should be able to set the scheme preference to ionic for ios so that your origin remains the same, and thus continue to use the same web storage that exists on the device.