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