From 92517d86f97aeb5633b94f4df719053be1748c27 Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Sun, 20 Jan 2019 15:05:10 +0100 Subject: [PATCH] NoteEdit: Configure textCapitalization settings Without this writing a journal is a pain as the first letter is not automatically capitalized. --- lib/note_editor.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/note_editor.dart b/lib/note_editor.dart index 84a6798b..446a7748 100644 --- a/lib/note_editor.dart +++ b/lib/note_editor.dart @@ -67,6 +67,7 @@ class NoteEditorState extends State { border: InputBorder.none, ), controller: _textController, + textCapitalization: TextCapitalization.sentences, ), );