[Flutter] デバイスを傾けた際に、横表示にしないようにしたい
Flutterで、デバイスを傾けた際に、横表示にならないようにしたい。
実装
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
// ↓この設定を追記
SystemChrome.setPreferredOrientations([
DeviceOrientation.portraitUp,
DeviceOrientation.portraitDown,
]);
return new MaterialApp(...);
}
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
// ↓この設定を追記
SystemChrome.setPreferredOrientations([
DeviceOrientation.portraitUp,
DeviceOrientation.portraitDown,
]);
return new MaterialApp(...);
}
}
参考
Author And Source
この問題について([Flutter] デバイスを傾けた際に、横表示にしないようにしたい), 我々は、より多くの情報をここで見つけました https://qiita.com/kenbu/items/879006b11bbb5a2bde36著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .