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
This commit is contained in:
Claude 2025-11-20 21:23:11 +00:00
parent 8667bd03dd
commit 5094915086
No known key found for this signature in database

View file

@ -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,
),