From 54407ef85404b35df6b8dc891858e43d8aba35cf Mon Sep 17 00:00:00 2001 From: Moritz Weber Date: Sat, 15 Jul 2023 17:09:51 +0200 Subject: [PATCH] small fix in ListTileTheme --- src/lib/presentation/theming.dart | 1 + src/lib/presentation/widgets/song_bottom_sheet.dart | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib/presentation/theming.dart b/src/lib/presentation/theming.dart index aba33ad..b957a30 100644 --- a/src/lib/presentation/theming.dart +++ b/src/lib/presentation/theming.dart @@ -152,6 +152,7 @@ ThemeData theme() => ThemeData( ), listTileTheme: const ListTileThemeData( iconColor: Colors.white, + contentPadding: EdgeInsets.symmetric(horizontal: HORIZONTAL_PADDING), ), radioTheme: RadioThemeData(fillColor: MaterialStateProperty.resolveWith( (Set states) { diff --git a/src/lib/presentation/widgets/song_bottom_sheet.dart b/src/lib/presentation/widgets/song_bottom_sheet.dart index a7678dd..320cda9 100644 --- a/src/lib/presentation/widgets/song_bottom_sheet.dart +++ b/src/lib/presentation/widgets/song_bottom_sheet.dart @@ -145,7 +145,7 @@ class _SongBottomSheetState extends State { onPressed: () { Share.share('${song.artist} - ${song.title}'); }, - icon: const Icon(Icons.share), + icon: const Icon(Icons.share_rounded), ) ), ),