Answers for "flutter stop rotation"

2

how to stop screen rotation in flutter

class MyApp extends StatelessWidget {
    @override
    Widget build(BuildContext context) {
      SystemChrome.setPreferredOrientations([
        DeviceOrientation.portraitUp,
        DeviceOrientation.portraitDown,
      ]);
      return new MaterialApp(...);
    }
  }
Posted by: Guest on August-09-2020
0

flutter block rotation

class MyApp extends StatelessWidget {
    @override
    Widget build(BuildContext context) {
    // This vvvv
      SystemChrome.setPreferredOrientations([
        DeviceOrientation.portraitUp,
        DeviceOrientation.portraitDown,
      ]);
    // ^^^^
      return new MaterialApp(...);
    }
  }
Posted by: Guest on February-24-2021

Code answers related to "Dart"

Browse Popular Code Answers by Language