Fix chat textfield isn't scrollable on large text

This commit is contained in:
Christian Pauly 2020-01-09 12:20:38 +01:00
parent 941980171b
commit 3d8bbf0556
2 changed files with 5 additions and 1 deletions

View File

@ -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

View File

@ -321,7 +321,7 @@ class _ChatState extends State<Chat> {
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,