flutter no rotation code example
Example: flutter block rotation
class MyApp extends StatelessWidget {
Widget build(BuildContext context) {
// This vvvv
SystemChrome.setPreferredOrientations([
DeviceOrientation.portraitUp,
DeviceOrientation.portraitDown,
]);
// ^^^^
return new MaterialApp(...);
}
}