|
|
@@ -69,7 +69,13 @@ if (navigator.userAgent.includes('#cordova#')) {
|
|
|
function () {
|
|
|
window.$vm = app.mount('#app');
|
|
|
StatusBar.overlaysWebView(false);
|
|
|
- StatusBar.backgroundColorByHexString('#00000000');
|
|
|
+ StatusBar.hide();
|
|
|
+ setTimeout(() => {
|
|
|
+ navigator.splashscreen.hide();
|
|
|
+ StatusBar.show();
|
|
|
+ StatusBar.backgroundColorByHexString('#F5F7FA');
|
|
|
+ StatusBar.styleDefault();
|
|
|
+ }, 2000);
|
|
|
if (/iphone|ipad|ipod/i.test(navigator.userAgent)) {
|
|
|
style.setProperty('--safe-top', 'env(safe-area-inset-top)');
|
|
|
style.setProperty('--safe-bottom', 'env(safe-area-inset-bottom)');
|