Better explore ever

This commit is contained in:
2024-08-30 13:43:29 +08:00
parent 07a86c32a0
commit a95292a9ef
11 changed files with 2510 additions and 25 deletions

View File

@ -44,7 +44,7 @@ class AlbumCard extends StatelessWidget {
],
).paddingSymmetric(horizontal: 8),
onTap: () {
if (onTap != null) return;
if (onTap == null) return;
onTap!();
},
),

View File

@ -43,7 +43,7 @@ class PlaylistCard extends StatelessWidget {
],
).paddingSymmetric(horizontal: 8),
onTap: () {
if (onTap != null) return;
if (onTap == null) return;
onTap!();
},
),