From 6ce77aea3e6c770dbe4ede9f9eac267843d3ff08 Mon Sep 17 00:00:00 2001 From: Mohammad Zolfaghari Date: Sun, 1 Sep 2024 11:36:58 +0330 Subject: [PATCH] fix: wrap checklist item text (#6145) --- .../database/widgets/cell_editor/checklist_cell_textfield.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/appflowy_flutter/lib/plugins/database/widgets/cell_editor/checklist_cell_textfield.dart b/frontend/appflowy_flutter/lib/plugins/database/widgets/cell_editor/checklist_cell_textfield.dart index abd519f31d..9d01340226 100644 --- a/frontend/appflowy_flutter/lib/plugins/database/widgets/cell_editor/checklist_cell_textfield.dart +++ b/frontend/appflowy_flutter/lib/plugins/database/widgets/cell_editor/checklist_cell_textfield.dart @@ -61,6 +61,7 @@ class ChecklistCellTextfield extends StatelessWidget { controller: textController, focusNode: focusNode, style: Theme.of(context).textTheme.bodyMedium, + maxLines: null, decoration: InputDecoration( border: InputBorder.none, isCollapsed: true,