mirror of
https://github.com/zjs81/meshcore-open.git
synced 2026-04-20 22:13:48 +00:00
9 lines
239 B
Dart
9 lines
239 B
Dart
import 'package:web/web.dart' as web;
|
|
|
|
class BrowserDetection {
|
|
static bool get isChrome {
|
|
final userAgent = web.window.navigator.userAgent.toLowerCase();
|
|
final isChrome = userAgent.contains('chrome');
|
|
return isChrome;
|
|
}
|
|
}
|