4

How does/will Uno handle the concept of Full-screen mode in Non-UWP apps? Will they start up in "Full screen" mode? Thanks.

Martin Zikmund
  • 38,440
  • 7
  • 70
  • 91

1 Answers1

4

By default WASM and macOS Uno Platform apps will start in Windowed mode and Android and iOS Uno Platform apps start full screen, but with system UI like status bars, navigation bars visible.

On Android and iOS, Uno Platform supports the ApplicationView.TryEnterFullScreenMode and ApplicationView.ExitFullScreenMode APIs, which make the app "fullscreen" - hiding navigation, status bar, etc. On WASM, full screen mode is not supported at the moment, but I have filed an issue here on GitHub to add support for it using the JavaScript Fullscreen API and will look at it ASAP.

Update

The Pull Request for this feature is live - https://github.com/unoplatform/uno/pull/2528

I have also done my first live coding session with this feature - https://www.youtube.com/watch?v=cZM80_nqoN8

Martin Zikmund
  • 38,440
  • 7
  • 70
  • 91