File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
frontend/app_flowy/lib/plugins/grid/presentation/widgets/cell/date_cell Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ class _DateCellState extends GridCellState<GridDateCell> {
5858 Widget build (BuildContext context) {
5959 final alignment = widget.cellStyle != null
6060 ? widget.cellStyle! .alignment
61- : Alignment .center ;
61+ : Alignment .centerLeft ;
6262 return BlocProvider .value (
6363 value: _cellBloc,
6464 child: BlocBuilder <DateCellBloc , DateCellState >(
@@ -77,7 +77,10 @@ class _DateCellState extends GridCellState<GridDateCell> {
7777 cursor: SystemMouseCursors .click,
7878 child: Align (
7979 alignment: alignment,
80- child: FlowyText .medium (state.dateStr, fontSize: 12 ),
80+ child: FlowyText .medium (
81+ state.dateStr,
82+ fontSize: 12 ,
83+ ),
8184 ),
8285 ),
8386 ),
You can’t perform that action at this time.
0 commit comments