Full Screen

📘

Control whether your app is displayed in full screen. This mode can also be set at runtime from your website using the JavaScript Bridge. Note that on Android when full screen mode enabled the keyboard will overlay on top of your web content which can cause issues completing forms.

iOS Full Screen in Landscape

On iOS the sidebars that show when modern iOS devices are in landscape mode can be hidden to provide the full horizontal screen space to your app.

Android Full Screen

On Android the Android Navigation Bar and Status Bar can be hidden to provide a full screen experience for the user. Note that in full screen mode the keyboard will overlay on top of your web content which can cause issues completing forms.

To set this mode as default enable within your app configuration on the Interface tab. To set at runtime 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();