Skip to content

Commit

Permalink
fixed song navigation
Browse files Browse the repository at this point in the history
  • Loading branch information
johanneskhage committed Mar 9, 2025
1 parent 67c82a3 commit dcfc90f
Showing 1 changed file with 21 additions and 18 deletions.
39 changes: 21 additions & 18 deletions lib/pages/games/songs/songs.dart
Original file line number Diff line number Diff line change
Expand Up @@ -61,25 +61,28 @@ class SongListItem extends StatelessWidget {

@override
Widget build(BuildContext context) {
return SizedBox(
height: 32 + 4,
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Text(
name,
style: TextStyle(
color: OnlineTheme.current.fg,
fontSize: 16,
return GestureDetector(
onTap: onTap,
child: SizedBox(
height: 32 + 4,
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Text(
name,
style: TextStyle(
color: OnlineTheme.current.fg,
fontSize: 16,
),
),
),
Icon(
LucideIcons.chevron_right,
color: OnlineTheme.current.mutedForeground,
size: 20,
),
],
Icon(
LucideIcons.chevron_right,
color: OnlineTheme.current.mutedForeground,
size: 20,
),
],
),
),
);
}
Expand Down

0 comments on commit dcfc90f

Please sign in to comment.