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

A plugin that enables you to retrieve the current platform (iOS, Android, Windows, ...)+ brower & more

Advanced Platform Detection (os & browser) #

pub package

A fully cross-platform plugin to retrieve the os, the browser? ;) and more !

Usage #

In the pubspec.yaml of your flutter project, add the following dependency:

dependencies:
  ...
  advanced_platform_detection: ^1.0.4

In your library add the following import:

import 'package:advanced_platform_detection/advanced_platform_detection.dart';



@override
Widget build(BuildContext context) {
  if (AdvancedPlatform.isIOS) {
    
  } else (AdvancedPlatform.isWeb) {
    
  } else (AdvancedPlatform.isSafari) { /// returns false if isWeb is false...
    
  }
  
  ...
}

4
likes
100
pub points
39%
popularity

Publisher

verified publishergaspardmerten.dev

A plugin that enables you to retrieve the current platform (iOS, Android, Windows, ...)+ brower & more

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, flutter_web_plugins

More

Packages that depend on advanced_platform_detection