style: reduce AppBar title font size to 16px for long titles

This commit is contained in:
zarzet
2026-01-18 12:59:10 +07:00
parent 6b1958bfd0
commit f814408702
5 changed files with 11 additions and 1 deletions

View File

@@ -228,6 +228,7 @@ class _AlbumScreenState extends ConsumerState<AlbumScreen> {
style: TextStyle(
color: colorScheme.onSurface,
fontWeight: FontWeight.w600,
fontSize: 16,
),
maxLines: 1,
overflow: TextOverflow.ellipsis,

View File

@@ -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(

View File

@@ -313,6 +313,7 @@ class _DownloadedAlbumScreenState extends ConsumerState<DownloadedAlbumScreen> {
style: TextStyle(
color: colorScheme.onSurface,
fontWeight: FontWeight.w600,
fontSize: 16,
),
maxLines: 1,
overflow: TextOverflow.ellipsis,

View File

@@ -109,6 +109,7 @@ class _PlaylistScreenState extends ConsumerState<PlaylistScreen> {
style: TextStyle(
color: colorScheme.onSurface,
fontWeight: FontWeight.w600,
fontSize: 16,
),
maxLines: 1,
overflow: TextOverflow.ellipsis,

View File

@@ -152,6 +152,7 @@ class _TrackMetadataScreenState extends ConsumerState<TrackMetadataScreen> {
style: TextStyle(
color: colorScheme.onSurface,
fontWeight: FontWeight.w600,
fontSize: 16,
),
maxLines: 1,
overflow: TextOverflow.ellipsis,