added unfocus when tapping outside textfield

This commit is contained in:
2024-04-02 14:41:36 +02:00
parent 42574583ed
commit 339d402422
2 changed files with 29 additions and 31 deletions

View File

@ -156,6 +156,9 @@ class _ChatTextfieldState extends State<ChatTextfield> {
}
setDraft(text);
},
onTapOutside: (PointerDownEvent event) {
FocusScope.of(context).requestFocus(FocusNode());
},
),
),
const SizedBox(width: 15),