We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8180fa6 commit 76c2a1aCopy full SHA for 76c2a1a
lib/screens/library_page.dart
@@ -326,7 +326,8 @@ class _LibraryPageState extends State<LibraryPage> {
326
final playlist = playlists[index];
327
final isLastItem = index == playlists.length - 1;
328
final borderRadius =
329
- (hasItemsBefore && index == 0) || (hasItemsAfter && isLastItem)
+ (hasItemsBefore && index == 0 && !isLastItem) ||
330
+ (hasItemsAfter && isLastItem)
331
? BorderRadius.zero
332
: getItemBorderRadius(index, playlists.length);
333
return PlaylistBar(
0 commit comments