Skip to content

Commit

Permalink
fix(battery_widget.dart): add a percent sign for battery
Browse files Browse the repository at this point in the history
  • Loading branch information
rlperez committed Dec 21, 2021
1 parent 33c87d5 commit 5a0d398
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/traits/battery_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class BatteryWidget extends StatelessWidget {
height: 10,
),
Text(
"Battery Level: ${_batteryLevelTraitProvider.getBatteryLevel}",
"Battery Level: ${_batteryLevelTraitProvider.getBatteryLevel}%",
style: TextStyle(fontSize: 22, fontStyle: FontStyle.normal),
),
]);
Expand Down

0 comments on commit 5a0d398

Please sign in to comment.