QuirkyCort / gears

Generic Educational Robotics Simulator
Other
65 stars 41 forks source link

Enable fullscreen for mobile devices via meta tags "mobile-web-app-capable" #79

Open germanicianus opened 3 years ago

germanicianus commented 3 years ago

Via the following tags it can be made possible for the user to put a link on the home-screen which then can be used to launch gears in full screen mode. I can confirm that the apple tag works for an iPhone. I didn't test it (yet) on other platforms.

<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes">

See also https://stackoverflow.com/questions/4617073/meta-tag-apple-mobile-web-app-capable-for-android.

QuirkyCort commented 3 years ago

Doing it properly takes a bit more than just that, but I understand the benefits. I'll handle it when I have a bit of time.