battery_view.dart 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. import 'package:flutter/material.dart';
  2. import 'package:battery/battery.dart';
  3. import 'package:device_info/device_info.dart';
  4. import 'dart:io';
  5. import 'package:shuqi/public.dart';
  6. class BatteryView extends StatefulWidget {
  7. @override
  8. _BatteryViewState createState() => _BatteryViewState();
  9. }
  10. class _BatteryViewState extends State<BatteryView> {
  11. double batteryLevel = 0;
  12. @override
  13. void initState() {
  14. super.initState();
  15. getBatteryLevel();
  16. }
  17. getBatteryLevel() async {
  18. DeviceInfoPlugin deviceInfo = DeviceInfoPlugin();
  19. if (Platform.isAndroid) {
  20. var androidInfo = await deviceInfo.androidInfo;
  21. if (!androidInfo.isPhysicalDevice) {
  22. return;
  23. }
  24. }
  25. if (Platform.isIOS) {
  26. var iosInfo = await deviceInfo.iosInfo;
  27. if (!iosInfo.isPhysicalDevice) {
  28. return;
  29. }
  30. }
  31. var level = await Battery().batteryLevel;
  32. setState(() {
  33. this.batteryLevel = level / 100.0;
  34. });
  35. }
  36. @override
  37. Widget build(BuildContext context) {
  38. return Container(
  39. width: 27,
  40. height: 12,
  41. child: Stack(
  42. children: <Widget>[
  43. Image.asset('img/reader_battery.png'),
  44. Container(
  45. margin: EdgeInsets.fromLTRB(2, 2, 2, 2),
  46. width: 20 * batteryLevel,
  47. color: SQColor.golden,
  48. )
  49. ],
  50. ),
  51. );
  52. }
  53. }