Closed sir-adam-smith closed 1 year ago
Is there a way we can get iOs landscape to recognise its a mobile device. Currently is considers an iPhone 13 mini in landscape to be a tablet in landscape
if (MediaQueryData.fromWindow(WidgetsBinding.instance!.window).size.shortestSide < 600) { deviceType = DeviceType.mobile; } else { deviceType = DeviceType.tablet; }
You can use this condition
Is there a way we can get iOs landscape to recognise its a mobile device. Currently is considers an iPhone 13 mini in landscape to be a tablet in landscape