├── .github ├── dependabot.yml └── workflows │ └── test-package.yml ├── .gitignore ├── AUTHORS ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── bin └── os_detect.dart ├── example ├── example.dart └── tree_shaking.dart ├── lib ├── os_detect.dart ├── override.dart └── src │ ├── os_kind.dart │ ├── os_override.dart │ ├── osid_html.dart │ ├── osid_io.dart │ └── osid_unknown.dart ├── pubspec.yaml └── test └── osid_test.dart /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-archive/os_detect/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/test-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-archive/os_detect/HEAD/.github/workflows/test-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .dart_tool/ 2 | .packages 3 | pubspec.lock 4 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-archive/os_detect/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-archive/os_detect/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-archive/os_detect/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-archive/os_detect/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-archive/os_detect/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /bin/os_detect.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-archive/os_detect/HEAD/bin/os_detect.dart -------------------------------------------------------------------------------- /example/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-archive/os_detect/HEAD/example/example.dart -------------------------------------------------------------------------------- /example/tree_shaking.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-archive/os_detect/HEAD/example/tree_shaking.dart -------------------------------------------------------------------------------- /lib/os_detect.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-archive/os_detect/HEAD/lib/os_detect.dart -------------------------------------------------------------------------------- /lib/override.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-archive/os_detect/HEAD/lib/override.dart -------------------------------------------------------------------------------- /lib/src/os_kind.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-archive/os_detect/HEAD/lib/src/os_kind.dart -------------------------------------------------------------------------------- /lib/src/os_override.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-archive/os_detect/HEAD/lib/src/os_override.dart -------------------------------------------------------------------------------- /lib/src/osid_html.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-archive/os_detect/HEAD/lib/src/osid_html.dart -------------------------------------------------------------------------------- /lib/src/osid_io.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-archive/os_detect/HEAD/lib/src/osid_io.dart -------------------------------------------------------------------------------- /lib/src/osid_unknown.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-archive/os_detect/HEAD/lib/src/osid_unknown.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-archive/os_detect/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/osid_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dart-archive/os_detect/HEAD/test/osid_test.dart --------------------------------------------------------------------------------