chore: don't show send button on mobile keyboard in send on enter is null (#2671)
This commit is contained in:
parent
50837194b2
commit
a22032e376
1 changed files with 2 additions and 2 deletions
|
|
@ -324,8 +324,8 @@ class PangeaChatInputRowState extends State<PangeaChatInputRow> {
|
|||
maxLines: 8,
|
||||
autofocus: !PlatformInfos.isMobile,
|
||||
keyboardType: TextInputType.multiline,
|
||||
textInputAction: AppConfig.sendOnEnter ??
|
||||
true && PlatformInfos.isMobile
|
||||
textInputAction: AppConfig.sendOnEnter == true &&
|
||||
PlatformInfos.isMobile
|
||||
? TextInputAction.send
|
||||
: null,
|
||||
onSubmitted: (String value) =>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue