major bug fixes

This commit is contained in:
Forrest 2026-08-04 19:29:58 -04:00
parent 9728906556
commit d6144c4483
39 changed files with 483 additions and 53 deletions

View file

@ -290,6 +290,11 @@ Future<_Picked<T>?> _showPicker<T>(
context: context,
backgroundColor: TimbreColors.background,
isScrollControlled: true,
// isScrollControlled removes the default height cap; constrain to 75% of
// the window so a long genre/year list never fills the entire screen.
constraints: BoxConstraints(
maxHeight: MediaQuery.of(context).size.height * 0.75,
),
builder: (ctx) => SafeArea(
child: Padding(
padding: const EdgeInsets.symmetric(vertical: TimbreSpacing.lg),