Skip to content

Commit

Permalink
Add padding to the player maximizer button
Browse files Browse the repository at this point in the history
  • Loading branch information
gokadzev committed Jun 8, 2023
1 parent 190e816 commit 851f476
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions lib/screens/root_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,12 @@ class _MusifyState extends State<Musify> {
},
child: Row(
children: <Widget>[
const Icon(
FluentIcons.arrow_up_24_filled,
size: 22,
const Padding(
padding: EdgeInsets.only(left: 15, right: 15),
child: Icon(
FluentIcons.arrow_up_24_filled,
size: 22,
),
),
Padding(
padding: const EdgeInsets.only(
Expand Down

0 comments on commit 851f476

Please sign in to comment.