fix: remove background color from CoveragePage and adjust layout spacing
This commit is contained in:
@@ -24,7 +24,6 @@ class CoveragePage extends StatelessWidget {
|
|||||||
create: (BuildContext context) => Modular.get<CoverageBloc>()
|
create: (BuildContext context) => Modular.get<CoverageBloc>()
|
||||||
..add(CoverageLoadRequested(date: DateTime.now())),
|
..add(CoverageLoadRequested(date: DateTime.now())),
|
||||||
child: Scaffold(
|
child: Scaffold(
|
||||||
backgroundColor: UiColors.background,
|
|
||||||
body: BlocBuilder<CoverageBloc, CoverageState>(
|
body: BlocBuilder<CoverageBloc, CoverageState>(
|
||||||
builder: (BuildContext context, CoverageState state) {
|
builder: (BuildContext context, CoverageState state) {
|
||||||
return Column(
|
return Column(
|
||||||
@@ -121,6 +120,7 @@ class CoveragePage extends StatelessWidget {
|
|||||||
),
|
),
|
||||||
const SizedBox(height: UiConstants.space3),
|
const SizedBox(height: UiConstants.space3),
|
||||||
CoverageShiftList(shifts: state.shifts),
|
CoverageShiftList(shifts: state.shifts),
|
||||||
|
const SizedBox(height: 100),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user