small fix in ListTileTheme

This commit is contained in:
Moritz Weber 2023-07-15 17:09:51 +02:00
parent bb80b344f5
commit 54407ef854
2 changed files with 2 additions and 1 deletions

View file

@ -152,6 +152,7 @@ ThemeData theme() => ThemeData(
),
listTileTheme: const ListTileThemeData(
iconColor: Colors.white,
contentPadding: EdgeInsets.symmetric(horizontal: HORIZONTAL_PADDING),
),
radioTheme: RadioThemeData(fillColor: MaterialStateProperty.resolveWith<Color>(
(Set<MaterialState> states) {

View file

@ -145,7 +145,7 @@ class _SongBottomSheetState extends State<SongBottomSheet> {
onPressed: () {
Share.share('${song.artist} - ${song.title}');
},
icon: const Icon(Icons.share),
icon: const Icon(Icons.share_rounded),
)
),
),