|
|
|
@ -1,5 +1,3 @@ |
|
|
|
|
import 'dart:io'; |
|
|
|
|
|
|
|
|
|
import 'package:device_info_plus/device_info_plus.dart'; |
|
|
|
|
import 'package:flutter/foundation.dart'; |
|
|
|
|
|
|
|
|
@ -28,12 +26,12 @@ bool isAppleOS([TargetPlatform? targetPlatform]) { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Future<bool> isIOSSimulator() async { |
|
|
|
|
DeviceInfoPlugin deviceInfo = DeviceInfoPlugin(); |
|
|
|
|
final deviceInfo = DeviceInfoPlugin(); |
|
|
|
|
|
|
|
|
|
var osInfo = await deviceInfo.deviceInfo; |
|
|
|
|
final osInfo = await deviceInfo.deviceInfo; |
|
|
|
|
|
|
|
|
|
if (osInfo is IosDeviceInfo) { |
|
|
|
|
final iosInfo = osInfo as IosDeviceInfo; |
|
|
|
|
final iosInfo = osInfo; |
|
|
|
|
return !iosInfo.isPhysicalDevice; |
|
|
|
|
} |
|
|
|
|
return false; |
|
|
|
|