how to disable screen rotation in flutter
void main() {
// add these lines
WidgetsFlutterBinding.ensureInitialized();
SystemChrome.setPreferredOrientations(
[DeviceOrientation.portraitUp, DeviceOrientation.portraitDown]);
/////////////
runApp(MyApp());
}