Skip to content

Latest commit

 

History

History
 
 

battery

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Battery

pub package

A Flutter plugin to access various information about the battery of the device the app is running on.

Usage

To use this plugin, add battery as a dependency in your pubspec.yaml file.

Example

// Import package
import 'package:battery/battery.dart';

// Instantiate it
var battery = Battery();

// Access current battery level
print(battery.batteryLevel);

// Be informed when the state (full, charging, discharging) changes
_battery.onBatteryStateChanged.listen((BatteryState state) {
  // Do something with new state
});