How to set landscape orientation mode for flutter app?

后端 未结 3 1363
借酒劲吻你
借酒劲吻你 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:22

    import 'package:flutter/services.dart';
    
    void main()  {
       WidgetsFlutterBinding.ensureInitialized();
       SystemChrome.setPreferredOrientations([DeviceOrientation.landscapeLeft])
       .then((_) {
        runApp(new MyApp());
      });
    }
    

提交回复
热议问题