refactor: update CoveragePage layout to use fixed height for shift list spacing

This commit is contained in:
Achintha Isuru
2026-01-30 01:36:19 -05:00
parent dd5b58b7bc
commit 1e8d6ae65b

View File

@@ -285,7 +285,9 @@ class _CoveragePageState extends State<CoveragePage> {
),
const SizedBox(height: UiConstants.space3),
CoverageShiftList(shifts: state.shifts),
SizedBox(height: MediaQuery.of(context).size.height * 0.8),
const SizedBox(
height: UiConstants.space24,
),
],
),
);