How to set landscape orientation mode for flutter app?

后端 未结 3 1378
借酒劲吻你
借酒劲吻你 2021-01-04 02:07

I was looking for code which can set orientation of my flutter app landscape forcefully.

3条回答
  •  感情败类
    2021-01-04 02:30

    SystemChrome.setPreferredOrientations is applicable for Flutter part of the app, but it's not a full solution. Because when you launching the app - Flutter are not created yet. So you should also setup orientation in the native parts.

    Here the article with detailed instructions https://medium.com/@greymag/flutter-orientation-lock-portrait-only-c98910ebd769

提交回复
热议问题