Qt 6.11 is out! See what's new in the release
blog
Switch off full screen mode for iOS and Android mobile application. How?
-
Hello all!
How to switch off full screen mode of Qt application for iOS and Android? is there any way from QML directly in ApplicationWindow or Window components?
@bogong
Looking at the number of posts and reputation of yours, i am not sure, if you are looking for such a simple answer.
But:Window { id: root visibility: Window.Maximized color: "#ff0000" Rectangle { anchors.fill: parent anchors.topMargin: parent.SafeArea.margins.top anchors.bottomMargin: parent.SafeArea.margins.bottom color: "#bbbbbb" } }And a useful link, explaining how things work since Qt 6.9:
https://www.qt.io/blog/expanded-client-areas-and-safe-areas-in-qt-6.9