Answers for "flutter change screen orientation"

0

flutter change screen orientation

//When loading the widget

@override
void initState(){
  super.initState();
  SystemChrome.setPreferredOrientations([
      DeviceOrientation.landscapeRight,
      DeviceOrientation.landscapeLeft,
  ]);
}

//When leaving the screen
@override
dispose(){
  SystemChrome.setPreferredOrientations([
    DeviceOrientation.landscapeRight,
    DeviceOrientation.landscapeLeft,
    DeviceOrientation.portraitUp,
    DeviceOrientation.portraitDown,
  ]);
  super.dispose();
}
Posted by: Guest on October-03-2021

Code answers related to "flutter change screen orientation"

Browse Popular Code Answers by Language