minor ui fixes

This commit is contained in:
Moritz Weber 2020-12-24 14:31:04 +01:00
parent b1ecb3dc9a
commit f4adfbe42c
2 changed files with 50 additions and 44 deletions

View file

@ -31,6 +31,8 @@ class CurrentlyPlayingBar extends StatelessWidget {
),
GestureDetector(
onTap: () => _onTap(context),
child: Container(
color: Colors.transparent,
child: Row(
children: <Widget>[
Image(
@ -61,6 +63,7 @@ class CurrentlyPlayingBar extends StatelessWidget {
],
),
),
),
],
);
}

View file

@ -21,6 +21,8 @@ class NextIndicator extends StatelessWidget {
return GestureDetector(
onTap: () => onTapAction(context),
child: Container(
color: Colors.transparent,
child: Padding(
padding: const EdgeInsets.only(top: 4.0, bottom: 8.0),
child: Center(
@ -40,6 +42,7 @@ class NextIndicator extends StatelessWidget {
),
),
),
),
);
},
);