You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Vitaliy Zarubin
b3679eec50
|
1 year ago | |
---|---|---|
.. | ||
data | 1 year ago | |
lib | 1 year ago | |
.gitignore | 2 years ago | |
README.md | 1 year ago | |
analysis_options.yaml | 1 year ago | |
pubspec.yaml | 1 year ago |
README.md
battery_plus_aurora
The Aurora implementation of battery_plus
.
Usage
This package is not an endorsed implementation of battery_plus
.
Therefore, you have to include battery_plus_aurora
alongside battery_plus
as dependencies in your pubspec.yaml
file.
pubspec.yaml
dependencies:
battery_plus: ^4.0.2
battery_plus_aurora:
git:
url: https://gitlab.com/omprussia/flutter/flutter-plugins.git
ref: master
path: packages/battery_plus/battery_plus_aurora
*.dart
// Import package
import 'package:battery_plus/battery_plus.dart';
// Instantiate it
var battery = Battery();
// Get current battery level
final batteryLevel = await _battery.batteryLevel;
// Get current battery state
final batteryState = await _battery.batteryState;
// Check is enable SaveMode
final isInBatterySaveMode = await _battery.isInBatterySaveMode;
// Be informed when the state (full, charging, discharging) changes
_battery.onBatteryStateChanged.listen((BatteryState state) {
debugPrint(state.toString());
});