web_browser_detect 1.0.4 copy "web_browser_detect: ^1.0.4" to clipboard
web_browser_detect: ^1.0.4 copied to clipboard

outdated

Flutter Web browser detection package. This package allows you to detect which browser and its version is in use.

web_browser_detect #

FlutterWeb browser detection package. This package helps you to detect current browser and version of the browser.

Warning: Remember that browser detection using UserAgent is never completely reliable. Therefore if you have some other way to do what you want to do, then do not use this package.

Contents #

  1. Installation
  2. How to Use
  3. Important Notes

Installation #

In your project's pubspec.yaml add:

dependencies:
  web_browser_detect: ^1.0.4

How to Use #

  1. If your IDE does not autoImport, add manually:
import 'package:web_browser_detect/web_browser_detect.dart';
  1. Create Browser object and then you can access detected values.
import 'package:web_browser_detect/web_browser_detect.dart';

void main() {
  final browser = Browser();

  print('${browser.browser} ${browser.version}');
}

Or you can use alternative method, which does not throw Exception when you are on other platforms then web, this way you get null, if you are not on web.

import 'package:web_browser_detect/web_browser_detect.dart';

void main() {
  final browser = Browser.detectOrNull();

  print('${browser.browser} ${browser.version}');
}

Important Notes #

Obviously this package supports only Flutter Web platform, it will not work on others. Additionally it does not support all current or past browsers, but PRs to add more are welcome.

15
likes
0
pub points
94%
popularity

Publisher

verified publishertomas-chyly.com

Flutter Web browser detection package. This package allows you to detect which browser and its version is in use.

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, universal_html

More

Packages that depend on web_browser_detect