I was looking for code which can set orientation of my flutter app landscape forcefully.
Enable forcefully
Import package: import 'package:flutter/services.dart';
in main.dart
file
1. Landscape mode:
// Set landscape orientation
SystemChrome.setPreferredOrientations([
DeviceOrientation.landscapeLeft,
DeviceOrientation.landscapeRight,
]);
2. Portrait mode:
// Set portrait orientation
SystemChrome.setPreferredOrientations([
DeviceOrientation.portraitDown,
DeviceOrientation.portraitUp,
]);