Created
September 2, 2018 09:07
-
-
Save kosiara/b0c1ed4ee914a8d92ef3e8a8144277fa to your computer and use it in GitHub Desktop.
Flutter portrait only
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void main() { | |
SystemChrome.setPreferredOrientations([DeviceOrientation.portraitUp]) | |
.then((_) { | |
runApp(new MyApp()); | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment