From 40163584a72888ad8622d5931142bc5e64f82900 Mon Sep 17 00:00:00 2001 From: Sorunome Date: Sun, 14 Jun 2020 17:12:27 +0200 Subject: [PATCH] proper capitalize main input field --- lib/components/input_bar.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/components/input_bar.dart b/lib/components/input_bar.dart index 61110dc71..dfb4b2253 100644 --- a/lib/components/input_bar.dart +++ b/lib/components/input_bar.dart @@ -280,6 +280,7 @@ class InputBar extends StatelessWidget { onChanged: (text) { onChanged(text); }, + textCapitalization: TextCapitalization.sentences, ), suggestionsCallback: getSuggestions, itemBuilder: buildSuggestion,