i am working on a flutter app where there is web app and in desktop its looking good but when i open it on mobile browser in portrait mode its correct and when the device is rotated the design is also rotated and the design breaks. how can i disable rotation of my web site in mobile browser even though the mobile is taken in landscape mode? i have given this in main.dart but it doesn't made any difference.
SystemChrome.setPreferredOrientations([
DeviceOrientation.portraitUp,
DeviceOrientation.portraitDown,
]);