chore: bump ndk

This commit is contained in:
2025-05-27 10:09:43 +01:00
parent 19d50f2947
commit a64cacb13c
2 changed files with 13 additions and 3 deletions

View File

@ -41,6 +41,9 @@ class __WriteMessageWidget extends State<WriteMessageWidget> {
// start auto-complete
_showAutoComplete();
}
if (_controller.text.endsWith(":")) {
_showEmojiAutoComplete();
}
});
}
@ -53,6 +56,13 @@ class __WriteMessageWidget extends State<WriteMessageWidget> {
super.dispose();
}
void _showEmojiAutoComplete() {
if (_entry != null) {
_entry!.remove();
_entry = null;
}
}
void _showAutoComplete() {
if (_entry != null) {
_entry!.remove();