mirror of
https://github.com/zjs81/meshcore-open.git
synced 2026-04-20 22:13:48 +00:00
deprecation fix
This commit is contained in:
parent
4975b5366e
commit
53d073d8f2
4 changed files with 5 additions and 5 deletions
|
|
@ -1,2 +1,2 @@
|
|||
export 'browser_detection_stub.dart'
|
||||
if (dart.library.html) 'browser_detection_web.dart';
|
||||
if (dart.library.js_interop) 'browser_detection_web.dart';
|
||||
|
|
|
|||
|
|
@ -1,9 +1,8 @@
|
|||
// ignore: avoid_web_libraries_in_flutter
|
||||
import 'dart:html' as html;
|
||||
import 'package:web/web.dart' as web;
|
||||
|
||||
class BrowserDetection {
|
||||
static bool get isChrome {
|
||||
final userAgent = html.window.navigator.userAgent.toLowerCase();
|
||||
final userAgent = web.window.navigator.userAgent.toLowerCase();
|
||||
final isChrome = userAgent.contains('chrome');
|
||||
return isChrome;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue