Fix chat textfield isn't scrollable on large text

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

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,