Search
 
SCRIPT & CODE EXAMPLE
 

DART

how to stop screen rotation in flutter

  class MyApp extends StatelessWidget {
    @override
    Widget build(BuildContext context) {
      SystemChrome.setPreferredOrientations([
        DeviceOrientation.portraitUp,
        DeviceOrientation.portraitDown,
      ]);
      return new MaterialApp(...);
    }
  }
Comment

how to disable screen rotation in flutter

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

  ///////////// 
  runApp(MyApp());
}
Comment

how to disable screen rotation in flutter

import 'package:flutter/services.dart';
Comment

PREVIOUS NEXT
Code Example
Dart :: to disable the shrinker pass the --no-shrink flag to this command. in flutter 
Dart :: flutter reverse list 
Dart :: How do I rotate widget in flutter? 
Dart :: flutter cut string 
Dart :: dart string to color 
Dart :: Send HTTP POST request in Flutter or Dart 
Dart :: how to disable switch in flutter 
Dart :: RenderFlex overflowed 
Dart :: flutter column vertical direction 
Dart :: flutter vertical space between containers 
Dart :: string to datetime flutter 
Dart :: flutter radio buttons in alert dialoug 
Dart :: dart regex 
Dart :: alert dialog flutter 
Dart :: call phone number flutter 
Dart :: flutter images 
Dart :: how to convert timestamp to datetime in dart 
Dart :: random in flutter int 
Dart :: dart comments 
Dart :: using the late keyword in flutter 
Dart :: flutter sliver TabBar 
Dart :: dart int double 
Dart :: Failed to load network image fliutter 
Dart :: flutter column in listview not working 
Dart :: dart key value pair list 
Dart :: select date without time flutter 
Dart :: flutter counter app with block library 
Dart :: listtile shape flutter 
Dart :: flutter encode 
Dart :: @override in dart 
ADD CONTENT
Topic
Content
Source link
Name
9+2 =