From dc3b86bbd05faed0713d3fb8be13e9eab80b935c Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Fri, 17 Jan 2020 10:41:28 +0100 Subject: [PATCH] Fix disappearing text --- lib/views/chat.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/views/chat.dart b/lib/views/chat.dart index 16b1405..a08dc67 100644 --- a/lib/views/chat.dart +++ b/lib/views/chat.dart @@ -88,7 +88,7 @@ class _ChatState extends State { super.dispose(); } - final TextEditingController sendController = TextEditingController(); + TextEditingController sendController = TextEditingController(); void send() { if (sendController.text.isEmpty) return;