Full Screen
Control whether your app is displayed in full screen. For example, the Android Navigation Bar and Status Bar can be hidden to provide a full screen experience.
iOS Full Screen in Landscape
The sidebars that show when modern iOS devices are in landscape mode can be hidden if desired. To set this mode add the appConfig parameter general.iosFullScreenWebview: true
.
{
"general":{
"iosFullScreenWebview": true
}
}
Android Full Screen
The Android Navigation Bar and Status Bar can be hidden to provide a full screen experience for the user. To set this mode when the app is initially loaded, add the appConfig parameter general.androidFullScreen: true
.
{
"general":{
"androidFullScreen": true
}
}
To set while the app is running, use the GoNative JavaScript Bridge command:
️GoNative JavaScript Bridge
To enable full screen mode:
gonative.android.screen.fullScreen();
To disable full screen mode:
gonative.android.screen.normal();
Updated 12 days ago