Skip to content

Commit

Permalink
Fix glitch on player screen
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelcspeed committed Feb 24, 2025
1 parent d97b864 commit b3d4390
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions lib/views/player/widgets/artist_title_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,12 @@ class ArtistTitleWidget extends ConsumerWidget {
return Column(
children: [
_title(context),
if (artistUrlPath.isNotNullAndNotEmpty()) _subtitle(context),
_subtitle(context),
],
);
}

Widget _title(BuildContext context) {
if (trackTitle?.isEmpty == true || trackTitle == null) {
return SizedBox(height: titleHeight);
}

return Padding(
padding: const EdgeInsets.all(16.0),
child: Text(
Expand Down

0 comments on commit b3d4390

Please sign in to comment.