From 509491508671a60cd05c830f0077092e4df0bfbc Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 20 Nov 2025 21:23:11 +0000 Subject: [PATCH] fix: adjust grid aspect ratio to prevent overflow - Change childAspectRatio from 0.75 to 0.68 for more vertical space - Fixes 'bottom overflowed by X pixels' error in grid cards - Provides adequate space for square cover + title + author text - Cards are slightly taller but layout is now correct --- .../library_browser/view/filtered_library_items_page.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/features/library_browser/view/filtered_library_items_page.dart b/lib/features/library_browser/view/filtered_library_items_page.dart index e370465..fb166cb 100644 --- a/lib/features/library_browser/view/filtered_library_items_page.dart +++ b/lib/features/library_browser/view/filtered_library_items_page.dart @@ -77,7 +77,7 @@ class FilteredLibraryItemsPage extends HookConsumerWidget { padding: const EdgeInsets.all(16), gridDelegate: const SliverGridDelegateWithFixedCrossAxisCount( crossAxisCount: 3, - childAspectRatio: 0.75, + childAspectRatio: 0.68, crossAxisSpacing: 12, mainAxisSpacing: 16, ),