小编典典

如何为Flutter应用设置横向模式?

flutter

我正在寻找可以强制设置我的Flutter应用程序布局方向的代码。


阅读 609

收藏
2020-08-13

共1个答案

小编典典

强制启用

导入包:import package:flutter/services.dart;在main.dart文件

1.横向模式:

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

2.时尚肖像:

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