7 lines
156 B
Dart
7 lines
156 B
Dart
import 'package:flutter/foundation.dart';
|
|
|
|
bool get webViewSupported {
|
|
if (kIsWeb) return true;
|
|
return defaultTargetPlatform != TargetPlatform.linux;
|
|
}
|