我正在寻找可以强制设置我的Flutter应用程序布局方向的代码。
强制启用
导入包:import package:flutter/services.dart;在main.dart文件
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, ]);