From 527dca5eb91db94f606ff4dc46811cae3be85361 Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Thu, 13 Feb 2020 17:13:58 +0100 Subject: [PATCH] ChecklistEditor: Let the text expand into multiple lines --- lib/editors/checklist_editor.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/editors/checklist_editor.dart b/lib/editors/checklist_editor.dart index 1c1e45b7..a34912b0 100644 --- a/lib/editors/checklist_editor.dart +++ b/lib/editors/checklist_editor.dart @@ -250,7 +250,7 @@ class _ChecklistItemTileState extends State { var editor = TextField( focusNode: widget.focusNode, keyboardType: TextInputType.text, - maxLines: 1, + maxLines: null, style: style, textCapitalization: TextCapitalization.sentences, controller: _textController,