Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

how to disable screen rotation in flutter

void main() {
  // add these lines
  WidgetsFlutterBinding.ensureInitialized();
  SystemChrome.setPreferredOrientations(
      [DeviceOrientation.portraitUp, DeviceOrientation.portraitDown]);

  ///////////// 
  runApp(MyApp());
}
Source by www.kindacode.com #
 
PREVIOUS NEXT
Tagged: #disable #screen #rotation #flutter
ADD COMMENT
Topic
Name
8+3 =