Fix chat textfield isn't scrollable on large text

onboarding
Christian Pauly 6 years ago
parent 941980171b
commit 3d8bbf0556

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

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

Loading…
Cancel
Save