mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
fix: adding vertical padding for progress bar (#2753)
This commit is contained in:
@ -32,8 +32,10 @@ class _ChecklistCardCellState extends State<ChecklistCardCell> {
|
|||||||
return BlocProvider.value(
|
return BlocProvider.value(
|
||||||
value: _cellBloc,
|
value: _cellBloc,
|
||||||
child: BlocBuilder<ChecklistCardCellBloc, ChecklistCellState>(
|
child: BlocBuilder<ChecklistCardCellBloc, ChecklistCellState>(
|
||||||
builder: (context, state) =>
|
builder: (context, state) => Padding(
|
||||||
ChecklistProgressBar(percent: state.percent),
|
padding: const EdgeInsets.symmetric(vertical: 4),
|
||||||
|
child: ChecklistProgressBar(percent: state.percent),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user