Full screen - Forum

Forum Navigation
You need to log in to create posts and topics.

Full screen

Please tell me if there is a VisualNEO Web command or operator that will allow a program written in VisualNEO Web to use the entire screen of your smartphone. What would the top and bottom panels not appear when the program is started?

If you mean hide status-bar then follow these steps:

1: add this line code to project>properties>platforms Options>Mobile>additional config.xml

<plugin name="cordova-plugin-statusbar" source="npm" spec="~2.4.3" />

2:add this snippet code to start-up event

NeoScriptToJS
BEGINJS
StatusBar.hide();
ENDJS

 

Uploaded files:
  • You need to login to have access to uploads.
Igor-13 and YASIN have reacted to this post.
Igor-13YASIN

@igor-13 you can also export to PWA format and host your app in a web hosting service. So it will be installable from the final URL using the whole screen space. Use the FitAppToScreen command to scale your app to occupy the whole screen whatever the screen resolution.

@asmat has shown you how to use full screen for PhoneGap (mobile) export.

This is a sample PWA app:
https://viruskiller.visualneo.com

Regards.

asmat and Igor-13 have reacted to this post.
asmatIgor-13