How can I binding function when press hide button of virtual keyboard?
Unsolved
QML and Qt Quick
-
I would like to implement some function in TextInput by using hidekeyboard pressing just like pseudo code below :
TextInput {
Keys.hideKeyboardPress: {
console.log("pressing hide key");
}
}
But Keys property does not have that key. Is that has another way to implement function?
-
@olekhanchai
what exactly do you want to achieve?
You can check if the keyboard gets hidden with "Qt.inputMethod.visible" property if thats you are after