chore: don't show send button on mobile keyboard in send on enter is null (#2671)

This commit is contained in:
ggurdin 2025-05-05 14:14:48 -04:00 committed by GitHub
parent 50837194b2
commit a22032e376
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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