Этот репозиторий содержит Flutter плагины для платформы ОС Аврора.
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 c352cd19a0 [license] Update license to BSD-3-Clause 1 year ago
..
data [example] Move all example plugins to a separate example app. OS-17394 OS-17572 OS-17584 1 year ago
lib [license] Update license to BSD-3-Clause 1 year ago
.gitignore [battery_plus] Implement battery_plus plugin. OMP#OS-17083 2 years ago
README.md [battery_plus] Implement battery_plus plugin. OMP#OS-17083 2 years ago
analysis_options.yaml [license] Update license to BSD-3-Clause 1 year ago
pubspec.yaml [license] Update license to BSD-3-Clause 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.1
  battery_plus_aurora:
    path: # path to folder with plugin

*.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());
});