├── .github └── workflows │ └── dart_ci.yaml ├── .gitignore ├── LICENSE ├── README.md ├── analysis_options.yaml ├── aviary.yaml ├── example ├── index.html └── main.dart ├── lib ├── decorator.dart ├── platform_detect.dart ├── src │ ├── browser.dart │ ├── decorator.dart │ ├── detect.dart │ ├── navigator.dart │ ├── operating_system.dart │ └── support.dart └── test_utils.dart ├── pubspec.yaml ├── run_tests.sh └── test ├── browser_test.dart ├── constants.dart ├── decorator_test.dart ├── operating_system_test.dart ├── support_test.dart └── test_utils_test.dart /.github/workflows/dart_ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Workiva/platform_detect/HEAD/.github/workflows/dart_ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Workiva/platform_detect/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Workiva/platform_detect/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Workiva/platform_detect/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Workiva/platform_detect/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /aviary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Workiva/platform_detect/HEAD/aviary.yaml -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Workiva/platform_detect/HEAD/example/index.html -------------------------------------------------------------------------------- /example/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Workiva/platform_detect/HEAD/example/main.dart -------------------------------------------------------------------------------- /lib/decorator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Workiva/platform_detect/HEAD/lib/decorator.dart -------------------------------------------------------------------------------- /lib/platform_detect.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Workiva/platform_detect/HEAD/lib/platform_detect.dart -------------------------------------------------------------------------------- /lib/src/browser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Workiva/platform_detect/HEAD/lib/src/browser.dart -------------------------------------------------------------------------------- /lib/src/decorator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Workiva/platform_detect/HEAD/lib/src/decorator.dart -------------------------------------------------------------------------------- /lib/src/detect.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Workiva/platform_detect/HEAD/lib/src/detect.dart -------------------------------------------------------------------------------- /lib/src/navigator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Workiva/platform_detect/HEAD/lib/src/navigator.dart -------------------------------------------------------------------------------- /lib/src/operating_system.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Workiva/platform_detect/HEAD/lib/src/operating_system.dart -------------------------------------------------------------------------------- /lib/src/support.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Workiva/platform_detect/HEAD/lib/src/support.dart -------------------------------------------------------------------------------- /lib/test_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Workiva/platform_detect/HEAD/lib/test_utils.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Workiva/platform_detect/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Workiva/platform_detect/HEAD/run_tests.sh -------------------------------------------------------------------------------- /test/browser_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Workiva/platform_detect/HEAD/test/browser_test.dart -------------------------------------------------------------------------------- /test/constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Workiva/platform_detect/HEAD/test/constants.dart -------------------------------------------------------------------------------- /test/decorator_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Workiva/platform_detect/HEAD/test/decorator_test.dart -------------------------------------------------------------------------------- /test/operating_system_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Workiva/platform_detect/HEAD/test/operating_system_test.dart -------------------------------------------------------------------------------- /test/support_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Workiva/platform_detect/HEAD/test/support_test.dart -------------------------------------------------------------------------------- /test/test_utils_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Workiva/platform_detect/HEAD/test/test_utils_test.dart --------------------------------------------------------------------------------