[Vuejs]-StatusBar gets Back after returning back to the app, why?

0👍

It works as @Manoj suggested by calling fullScreenApplier() in @loaded,

but there is another problem,

when I call this one:

permissionApplier () {
   permissions.requestPermission ( [
      "android.permission.INTERNET" ,
      "android.permission.READ_EXTERNAL_STORAGE"
   ] );
}

it returns back the StatusBar again.

What Can I do for this problem?

Leave a comment