fix: reduce bottom sheet spacing

This commit is contained in:
edde746
2026-03-18 09:46:48 +01:00
parent fb4f17a898
commit 8bdf2b53d3
4 changed files with 27 additions and 12 deletions
+2 -2
View File
@@ -81,10 +81,10 @@ class BottomSheetHeader extends StatelessWidget {
}
// Determine the title style
final effectiveTitleStyle = titleStyle ?? TextStyle(fontSize: 20, fontWeight: FontWeight.bold, color: titleColor);
final effectiveTitleStyle = titleStyle ?? TextStyle(fontSize: 18, fontWeight: FontWeight.bold, color: titleColor);
return Container(
padding: const EdgeInsets.all(16),
padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 8),
decoration: showBorder
? BoxDecoration(
border: Border(bottom: BorderSide(color: Theme.of(context).dividerColor)),