Update:Ereader fullscreen #731

This commit is contained in:
advplyr 2023-06-17 17:34:08 -05:00
parent 4f9d341f69
commit 7b3a005ad6
8 changed files with 165 additions and 59 deletions

View file

@ -16,6 +16,14 @@ if (Capacitor.getPlatform() != 'web') {
setStatusBarStyleDark()
}
Vue.prototype.$showHideStatusBar = async (show) => {
if (show) {
StatusBar.show()
} else {
StatusBar.hide()
}
}
Vue.prototype.$isDev = process.env.NODE_ENV !== 'production'
Vue.prototype.$getAndroidSDKVersion = async () => {