Sometimes your application needs to be a full screen reserving all the available space in the screen. You can implement this functionality in native script Vue using with 2 ways. 1. From Source code implement this function in the mounted() method of your activity. if (app.android) { const activity = app.android.startActivity; const win = activity.getWindow(); win.addFlags(android.view.WindowManager.LayoutParams.FLAG_FULLSCREEN); […]