From 3d8bbf0556dee1a35d0774ffe8f57144b5ecd504 Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Thu, 9 Jan 2020 12:20:38 +0100 Subject: [PATCH] Fix chat textfield isn't scrollable on large text --- CHANGELOG.md | 4 ++++ lib/views/chat.dart | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 22709fe..c0f954e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# Version 0.2.4 - 2020-MM-DD +### Fixes +- Chat textfield isn't scrollable on large text + # Version 0.2.3 - 2020-01-08 ### New features - Added changelog diff --git a/lib/views/chat.dart b/lib/views/chat.dart index 992a428..9482211 100644 --- a/lib/views/chat.dart +++ b/lib/views/chat.dart @@ -321,7 +321,7 @@ class _ChatState extends State { padding: const EdgeInsets.symmetric(vertical: 8.0), child: TextField( minLines: 1, - maxLines: kIsWeb ? 1 : null, + maxLines: kIsWeb ? 1 : 8, keyboardType: kIsWeb ? TextInputType.text : TextInputType.multiline,