This package allows to detect the platform and the browser version used to view a web page.
Differentiated browsers are: IE
, Edge
, Chrome
, Safari
, Firefox
, Opera
, Electron
, Other
along with Mac
, Windows
and Other
platforms.
import 'package:user_environment/user_environment.dart';
void main() {
UserEnvironment env = UserEnvironmentFactory();
print([
env.browser.type,
env.browser.version?.value,
env.browser.getFeatureVersion('AppleWebKit'),
env.platform.type
]);
}
pub serve test pub run test -p chrome
Add this to your package's pubspec.yaml file:
dependencies:
user_environment: ^1.0.1
You can install packages from the command line:
with pub:
$ pub get
Alternatively, your editor might support pub get
.
Check the docs for your editor to learn more.
Now in your Dart code, you can use:
import 'package:user_environment/user_environment.dart';
Version | Uploaded | Documentation | Archive |
---|---|---|---|
1.0.1 | Dec 4, 2017 |
|
|
1.0.0 | Dec 4, 2017 |
|
|
Popularity:
Describes how popular the package is relative to other packages.
[more]
|
11
|
Health:
Code health derived from static analysis.
[more]
|
--
|
Maintenance:
Reflects how tidy and up-to-date the package is.
[more]
|
--
|
Overall:
Weighted score of the above.
[more]
|
6
|
The package version is not analyzed, because it does not support Dart 2. Until this is resolved, the package will receive a health and maintenance score of 0.
Support Dart 2 in pubspec.yaml
.
The SDK constraint in pubspec.yaml
doesn't allow the Dart 2.0.0 release. For information about upgrading it to be Dart 2 compatible, please see https://www.dartlang.org/dart-2#migration.
Make sure dartdoc
successfully runs on your package's source files. (-10 points)
Dependencies were not resolved.
Package | Constraint | Resolved | Available |
---|---|---|---|
Direct dependencies | |||
Dart SDK | >=1.24.1 <2.0.0 |