`isIOSSimulator` is false if `isAppleOS` is false

pull/1108/head
Adil Hanney 2 years ago
parent ab5690a6d7
commit 0c2f72b49c
No known key found for this signature in database
GPG Key ID: 27A0885BC5740457
  1. 4
      lib/src/utils/platform.dart

@ -26,6 +26,10 @@ bool isAppleOS([TargetPlatform? targetPlatform]) {
}
Future<bool> isIOSSimulator() async {
if (!isAppleOS()) {
return false;
}
final deviceInfo = DeviceInfoPlugin();
final osInfo = await deviceInfo.deviceInfo;

Loading…
Cancel
Save