Fix landscape orientation for both IOS/ANDROID
-
Hi,
I'm developing an Qt/QML mobile application for both android and IOS. The orientation of my app is fixed to portrait. Now, I have a specific screen which demands landscape orientation. Now, my question is how to achieve landscape orientation for that one particular screen whereas, the orientation is fixed to portrait for my entire app?
-
Hi,
I'm developing an Qt/QML mobile application for both android and IOS. The orientation of my app is fixed to portrait. Now, I have a specific screen which demands landscape orientation. Now, my question is how to achieve landscape orientation for that one particular screen whereas, the orientation is fixed to portrait for my entire app?
@Yashpal
this should be set "natively".
For example in android this can be set via the manifest.xml -
Hi,
I'm developing an Qt/QML mobile application for both android and IOS. The orientation of my app is fixed to portrait. Now, I have a specific screen which demands landscape orientation. Now, my question is how to achieve landscape orientation for that one particular screen whereas, the orientation is fixed to portrait for my entire app?
@Yashpal hi, take a look at the Switching Between Portrait and Landscape Views part of the docu.
this should be a working example.
-
Thank you @J-Hilk and @raven-worx for your support.