system_state 1.2.3 system_state: ^1.2.3 copied to clipboard
A Flutter plugin to access system state information like battery level, temperature, and charging status, and listen for battery state changes.
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add system_state
copied to clipboard
With Flutter:
$ flutter pub add system_state
copied to clipboard
This will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get
):
dependencies:
system_state: ^1.2.3
copied to clipboard
Alternatively, your editor might support dart pub get
or flutter pub get
. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:system_state/system_state.dart';
copied to clipboard