fix: Send on enter broken on iOS

This commit is contained in:
Christian Kußowski 2026-03-30 09:09:31 +02:00
commit f0545aaa85
No known key found for this signature in database
GPG key ID: E067ECD60F1A0652

View file

@ -392,6 +392,10 @@ class InputBar extends StatelessWidget {
controller: controller,
focusNode: focusNode,
readOnly: readOnly,
onEditingComplete: () {
// To not lose focus on iOS:
// https://github.com/krille-chan/fluffychat/issues/2784
},
contextMenuBuilder: (c, e) => MarkdownContextBuilder(
editableTextState: e,
controller: controller,