i am trying to set landscape orientation for the tablet after running my app, always running in portrait mode, here is what I did:
void main() {
WidgetsFlutterBinding.ensureInitialized();
// Set landscape orientation
SystemChrome.setPreferredOrientations([
DeviceOrientation.landscapeLeft,
DeviceOrientation.landscapeRight,
]);
runApp(MyApp());
}