platform_info 2.0.0 copy "platform_info: ^2.0.0" to clipboard
platform_info: ^2.0.0 copied to clipboard

outdated

Contains info about current platform such as Build mode and Operating system

platform_info #

Actions Status Coverage Pub License: WTFPL effective_dart

About #

Cross-platform io/html package.
Works on the web, mobile phones, desktops and console.
Fully caches itself on first initialization.

Easy to use, just add to pubspec.yaml as dependency and then import:
import 'package:platform_info/platform_info.dart';

Platform is a singleton, and the default way to access an instance of Platform is to call static getters:
Platform.instance or Platform.I or platform

Platform Information #

Provides platform information such as:

  • Build mode

    • release
    • profile
    • debug
  • Host platform type

    • io (vm, desktops, mobile, console)
    • web (html, js, browser)
  • Operating system

    • Fuchsia
    • Linux
    • MacOS
    • Windows
    • iOS
    • Android
    • Unknown
  • Version ('

  • Locale string ('en' if not available)

  • The number of individual execution units of the machine (0 if not available)

  • Operating system is known type

  • Is a mobile device (Android, iOS)

  • Is a desktop device (Windows, macOS, Fuchsia)

  • Is material design device (Android, Fuchsia)

  • Is cupertino design device (macOS, iOS)

  • isLinux

  • isMacOS

  • isWindows

  • isAndroid

  • isIOS

  • isFuchsia

For example #

import 'package:platform_info/platform_info.dart';

void main(List<String> args) {
  // Use [Platform.instance] or [Platform.I] or [platform] getter
  print(Platform.instance.version);
  print(Platform.I.operatingSystem);
  print(platform.numberOfProcessors.gcd(1));
}

Coverage #

Changelog #

Refer to the Changelog to get all release notes.

Maintainers #

Plague Fox

License #

WTFPL

94
likes
0
pub points
93%
popularity

Publisher

verified publisherplugfox.dev

Contains info about current platform such as Build mode and Operating system

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on platform_info