How to set landscape orientation mode for flutter app?

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

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

3条回答
  •  萌比男神i
    2021-01-04 02:25

    Enable forcefully

    Import package: import 'package:flutter/services.dart'; in main.dart file

    1. Landscape mode:

    // Set landscape orientation
    SystemChrome.setPreferredOrientations([
      DeviceOrientation.landscapeLeft,
      DeviceOrientation.landscapeRight,
    ]);
    

    2. Portrait mode:

    // Set portrait orientation
    SystemChrome.setPreferredOrientations([
       DeviceOrientation.portraitDown,
       DeviceOrientation.portraitUp,
    ]);
    

提交回复
热议问题