美文网首页Flutter 好东西Flutter
flutter强制横屏竖屏设置

flutter强制横屏竖屏设置

作者: lovefo | 来源:发表于2019-06-13 13:23 被阅读0次

    横屏

    void main(){
      // 强制横屏
      SystemChrome.setPreferredOrientations([
        DeviceOrientation.landscapeLeft,
        DeviceOrientation.landscapeRight
      ]);
      runApp(new MyApp());
    }
    

    竖屏

    void main(){
      // 强制竖屏
      SystemChrome.setPreferredOrientations([
        DeviceOrientation.portraitUp,
        DeviceOrientation.portraitDown
      ]);
      runApp(new MyApp());
    }
    

    相关文章

      网友评论

        本文标题:flutter强制横屏竖屏设置

        本文链接:https://www.haomeiwen.com/subject/nrajfctx.html