fix: Input bar not working, making app unusable

This commit is contained in:
Sorunome 2020-11-21 14:41:06 +01:00
parent 00ed0d6d25
commit 10773b4059
No known key found for this signature in database
GPG Key ID: B19471D07FC9BE9C
2 changed files with 12 additions and 4 deletions

View File

@ -261,11 +261,19 @@ class InputBar extends StatelessWidget {
maxLines: maxLines,
keyboardType: keyboardType,
autofocus: autofocus,
onSubmitted: onSubmitted,
onSubmitted: (text) {
// fix for library for now
// it sets the types for the callback incorrectly
onSubmitted(text);
},
focusNode: focusNode,
controller: controller,
decoration: decoration,
onChanged: onChanged,
onChanged: (text) {
// fix for the library for now
// it sets the types for the callback incorrectly
onChanged(text);
},
textCapitalization: TextCapitalization.sentences,
),
suggestionsCallback: getSuggestions,

View File

@ -1,7 +1,7 @@
name: fluffychat
description: Chat with your friends.
publish_to: none
version: 0.22.0+49
version: 0.22.1+50
environment:
sdk: ">=2.6.0 <3.0.0"
@ -84,4 +84,4 @@ flutter:
- assets/
- assets/sounds/
- assets/js/
- assets/js/package/
- assets/js/package/