I was looking for code which can set orientation of my flutter app landscape forcefully.
import 'package:flutter/services.dart'; void main() { WidgetsFlutterBinding.ensureInitialized(); SystemChrome.setPreferredOrientations([DeviceOrientation.landscapeLeft]) .then((_) { runApp(new MyApp()); }); }