Skip to content

Instantly share code, notes, and snippets.

@littleironical
Created December 5, 2020 10:38
Show Gist options
  • Save littleironical/da202656a8d8c612291df23297750b39 to your computer and use it in GitHub Desktop.
Save littleironical/da202656a8d8c612291df23297750b39 to your computer and use it in GitHub Desktop.
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
// SETTING ORIENTATION TO PORTRAIT
SystemChrome.setPreferredOrientations([
DeviceOrientation.portraitUp,
DeviceOrientation.portraitDown,
]);
return new MaterialApp(...);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment