Skip to content

Commit

Permalink
fix(battery_widget.dart): Make battery widget battery level text on n…
Browse files Browse the repository at this point in the history
…ext line
  • Loading branch information
rlperez committed Dec 22, 2021
1 parent 5fd31f1 commit 27c059f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lib/traits/battery_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ class BatteryWidget extends StatelessWidget {
style: Theme.of(context).textTheme.headline6,
textAlign: TextAlign.left,
),
]),
SizedBox(
height: 10,
),
Row(children: [
Text(
'${_batteryLevelTraitProvider.getBatteryLevel}% Battery',
style: TextStyle(
Expand Down

0 comments on commit 27c059f

Please sign in to comment.