From 8db1139d0dbb643faff1ad11623dd5068f79c14d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elias=20M=C3=BCller?= Date: Sun, 28 Jan 2024 15:56:51 +0100 Subject: [PATCH] #17 Fixed wrong capitalisation option --- lib/view/pages/talk/components/chatTextfield.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/view/pages/talk/components/chatTextfield.dart b/lib/view/pages/talk/components/chatTextfield.dart index e98826e..d79aab3 100644 --- a/lib/view/pages/talk/components/chatTextfield.dart +++ b/lib/view/pages/talk/components/chatTextfield.dart @@ -142,6 +142,8 @@ class _ChatTextfieldState extends State { const SizedBox(width: 15), Expanded( child: TextField( + autocorrect: true, + textCapitalization: TextCapitalization.sentences, style: const TextStyle( color: Colors.white, ),