From f86ca8133382dfe362b9f98324e76f8b26e4ac00 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 61110dc..dfb4b22 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,