shouldUseIOSStyle function

bool shouldUseIOSStyle()

Implementation

bool shouldUseIOSStyle() {
  if (kIsWeb) {
    // For web, use iOS style for browser which is on Apple platforms.
    return defaultTargetPlatform == TargetPlatform.iOS ||
        defaultTargetPlatform == TargetPlatform.macOS;
  } else {
    // For native platforms, use iOS style only on iOS
    return defaultTargetPlatform == TargetPlatform.iOS;
  }
}