Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

how to set device into autorotate in flutter

  void initState() {
    super.initState();
    SystemChrome.setPreferredOrientations([
      DeviceOrientation.landscapeRight,
      DeviceOrientation.landscapeLeft,
    ]);
  }
  @override
  dispose(){
     SystemChrome.setPreferredOrientations([
        DeviceOrientation.portraitUp,
        DeviceOrientation.portraitDown,
      ]);
    super.dispose();
  }
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #set #device #autorotate #flutter
ADD COMMENT
Topic
Name
7+5 =