fix(home): bottom player transparency

This commit is contained in:
Kingkor Roy Tirtho 2023-03-23 19:06:03 +06:00
parent e04515d8e2
commit 20c424c77f
2 changed files with 26 additions and 30 deletions

View File

@ -68,7 +68,6 @@ class GenrePage extends HookConsumerWidget {
}
},
controller: scrollController,
child: SafeArea(
child: ListView.builder(
controller: scrollController,
itemCount: categories.length,
@ -81,7 +80,6 @@ class GenrePage extends HookConsumerWidget {
},
),
),
),
);
return Stack(

View File

@ -110,8 +110,7 @@ class PersonalizedPage extends HookConsumerWidget {
final newReleases = useQueries.album.newReleases(ref);
return SafeArea(
child: ListView(
return ListView(
children: [
PersonalizedItemCard(
playlists:
@ -127,7 +126,6 @@ class PersonalizedPage extends HookConsumerWidget {
onFetchMore: newReleases.fetchNext,
),
],
),
);
}
}