cleaned up some icons

This commit is contained in:
Moritz Weber 2022-10-03 10:40:57 +02:00
parent 7d8bbba7a2
commit 441e5f44fe
14 changed files with 19 additions and 20 deletions

View file

@ -74,7 +74,7 @@ class _AlbumDetailsPageState extends State<AlbumDetailsPage> {
if (songsByDisc.length > 1)
ListTile(
title: Text('Disc ${d + 1}', style: TEXT_HEADER),
leading: const SizedBox(width: 40, child: Icon(Icons.album)),
leading: const SizedBox(width: 40, child: Icon(Icons.album_rounded)),
contentPadding: const EdgeInsets.only(left: HORIZONTAL_PADDING),
),
if (songsByDisc.length > 1)

View file

@ -138,7 +138,7 @@ class CurrentlyPlayingPage extends StatelessWidget {
child: Padding(
padding: EdgeInsets.only(bottom: 8.0),
child: Icon(
Icons.expand_less,
Icons.expand_less_rounded,
color: Colors.white70,
),
),

View file

@ -24,12 +24,12 @@ class LibraryFoldersPage extends StatelessWidget {
style: TEXT_HEADER,
),
leading: IconButton(
icon: const Icon(Icons.chevron_left),
icon: const Icon(Icons.chevron_left_rounded),
onPressed: () => navStore.pop(context),
),
actions: [
IconButton(
icon: const Icon(Icons.add),
icon: const Icon(Icons.add_rounded),
onPressed: () => _openFilePicker(settingsStore),
),
],
@ -45,7 +45,7 @@ class LibraryFoldersPage extends StatelessWidget {
return ListTile(
title: Text(path),
trailing: IconButton(
icon: const Icon(Icons.delete),
icon: const Icon(Icons.delete_rounded),
onPressed: () => settingsStore.removeLibraryFolder(path),
),
);

View file

@ -37,7 +37,6 @@ class LibraryTabContainer extends StatelessWidget {
],
),
),
// IconButton(icon: const Icon(Icons.more_vert), onPressed: () {}),
],
),
),

View file

@ -44,7 +44,7 @@ class QueuePage extends StatelessWidget {
child: SizedBox(
width: 56.0,
child: IconButton(
icon: const Icon(Icons.expand_more),
icon: const Icon(Icons.expand_more_rounded),
onPressed: () => Navigator.pop(context),
),
),

View file

@ -57,7 +57,7 @@ class SettingsPage extends StatelessWidget {
),
ListTile(
title: const Text('Manage library folders'),
trailing: const Icon(Icons.chevron_right),
trailing: const Icon(Icons.chevron_right_rounded),
onTap: () => navStore.push(
context,
MaterialPageRoute(

View file

@ -28,7 +28,7 @@ class SmartListArtistsPage extends StatelessWidget {
style: TEXT_HEADER,
),
leading: IconButton(
icon: const Icon(Icons.close),
icon: const Icon(Icons.close_rounded),
onPressed: () {
store.selectedArtists.clear();
store.selectedArtists.addAll(initialSet);
@ -37,7 +37,7 @@ class SmartListArtistsPage extends StatelessWidget {
),
actions: [
IconButton(
icon: const Icon(Icons.check),
icon: const Icon(Icons.check_rounded),
onPressed: () async {
navStore.pop(context);
},

View file

@ -51,7 +51,7 @@ class _AlbumSliverAppBarState extends State<AlbumSliverAppBar> {
maxHeight: maxHeight,
),
leading: IconButton(
icon: const Icon(Icons.chevron_left),
icon: const Icon(Icons.chevron_left_rounded),
onPressed: () => navStore.pop(context),
),
actions: [

View file

@ -25,7 +25,7 @@ class ArtistHeader extends StatelessWidget {
color: Colors.white,
),
leading: IconButton(
icon: const Icon(Icons.chevron_left),
icon: const Icon(Icons.chevron_left_rounded),
onPressed: () => navStore.pop(context),
),
flexibleSpace: FlexibleSpaceBar(

View file

@ -18,7 +18,7 @@ class CurrentlyPlayingHeader extends StatelessWidget {
return Row(
children: [
IconButton(
icon: const Icon(Icons.expand_more),
icon: const Icon(Icons.expand_more_rounded),
onPressed: () {
Navigator.pop(context);
},
@ -44,7 +44,7 @@ class CurrentlyPlayingHeader extends StatelessWidget {
),
),
IconButton(
icon: const Icon(Icons.more_vert),
icon: const Icon(Icons.more_vert_rounded),
onPressed: () => onMoreTap(context),
)
],

View file

@ -221,7 +221,7 @@ class _SongBottomSheetState extends State<SongBottomSheet> {
else
setState(() => optionIndex = 1);
},
icon: const Icon(Icons.link),
icon: const Icon(Icons.link_rounded),
color: utils.linkColor(song),
),
LikeButton(song: song),

View file

@ -30,7 +30,7 @@ class SongCustomizationButtons extends StatelessWidget {
children: [
IconButton(
icon: Icon(
song.next || song.previous ? Icons.link : Icons.link_off,
song.next || song.previous ? Icons.link_rounded : Icons.link_off_rounded,
color: linkColor(song),
),
iconSize: 20.0,

View file

@ -65,7 +65,7 @@ class SongListTile extends StatelessWidget {
subtitleWidget = Row(
children: [
const Icon(
Icons.favorite,
Icons.favorite_rounded,
size: 12.0,
),
const SizedBox(width: 2.0),
@ -75,7 +75,7 @@ class SongListTile extends StatelessWidget {
),
const SizedBox(width: 8.0),
const Icon(
Icons.play_arrow,
Icons.play_arrow_rounded,
size: 12.0,
),
const SizedBox(width: 2.0),
@ -133,7 +133,7 @@ class SongListTile extends StatelessWidget {
),
if (!isSelectEnabled)
IconButton(
icon: const Icon(Icons.more_vert),
icon: const Icon(Icons.more_vert_rounded),
iconSize: 20.0,
onPressed: () => onTapMore(),
)

View file

@ -66,7 +66,7 @@ class SongListTileNumbered extends StatelessWidget {
),
if (!isSelectEnabled)
IconButton(
icon: const Icon(Icons.more_vert),
icon: const Icon(Icons.more_vert_rounded),
iconSize: 20.0,
onPressed: () => onTapMore(),
)