diff --git a/lib/screens/album_screen.dart b/lib/screens/album_screen.dart index aad638f..1c701a5 100644 --- a/lib/screens/album_screen.dart +++ b/lib/screens/album_screen.dart @@ -228,6 +228,7 @@ class _AlbumScreenState extends ConsumerState { style: TextStyle( color: colorScheme.onSurface, fontWeight: FontWeight.w600, + fontSize: 16, ), maxLines: 1, overflow: TextOverflow.ellipsis, diff --git a/lib/screens/artist_screen.dart b/lib/screens/artist_screen.dart index 23b21cc..b0ea013 100644 --- a/lib/screens/artist_screen.dart +++ b/lib/screens/artist_screen.dart @@ -341,7 +341,13 @@ return SliverAppBar( opacity: _showTitleInAppBar ? 1.0 : 0.0, child: Text( widget.artistName, - style: TextStyle(color: colorScheme.onSurface), + style: TextStyle( + color: colorScheme.onSurface, + fontWeight: FontWeight.w600, + fontSize: 16, + ), + maxLines: 1, + overflow: TextOverflow.ellipsis, ), ), flexibleSpace: FlexibleSpaceBar( diff --git a/lib/screens/downloaded_album_screen.dart b/lib/screens/downloaded_album_screen.dart index 7536911..6ccec1d 100644 --- a/lib/screens/downloaded_album_screen.dart +++ b/lib/screens/downloaded_album_screen.dart @@ -313,6 +313,7 @@ class _DownloadedAlbumScreenState extends ConsumerState { style: TextStyle( color: colorScheme.onSurface, fontWeight: FontWeight.w600, + fontSize: 16, ), maxLines: 1, overflow: TextOverflow.ellipsis, diff --git a/lib/screens/playlist_screen.dart b/lib/screens/playlist_screen.dart index 3ff948f..380dc02 100644 --- a/lib/screens/playlist_screen.dart +++ b/lib/screens/playlist_screen.dart @@ -109,6 +109,7 @@ class _PlaylistScreenState extends ConsumerState { style: TextStyle( color: colorScheme.onSurface, fontWeight: FontWeight.w600, + fontSize: 16, ), maxLines: 1, overflow: TextOverflow.ellipsis, diff --git a/lib/screens/track_metadata_screen.dart b/lib/screens/track_metadata_screen.dart index 52b25ea..1f9134d 100644 --- a/lib/screens/track_metadata_screen.dart +++ b/lib/screens/track_metadata_screen.dart @@ -152,6 +152,7 @@ class _TrackMetadataScreenState extends ConsumerState { style: TextStyle( color: colorScheme.onSurface, fontWeight: FontWeight.w600, + fontSize: 16, ), maxLines: 1, overflow: TextOverflow.ellipsis,