danschultz / browser_detect.dart

A Dart package that provides information about the user's web browser.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Browser Detect

A package that detects the browser being used to view a web page. Useful for blanket browser detection. If possible, try to use feature detection over this approach.

Usage

Import the Browser Detect package.

import 'package:browser_detect/browser_detect.dart';

Use the library's browser field to query for information about the detected browser. This field contains properties for checking the browser type and version.

if (browser.isIe && browser.version <= "9") {
  // Do something.
}

About

A Dart package that provides information about the user's web browser.

License:Other


Languages

Language:Dart 92.3%Language:HTML 7.7%