InputPanel QML Type, getting the key pressed on VirtualKeyboard
Unsolved
QML and Qt Quick
-
Hello everyone,
I have an issue with my virtual keyboard created by an InputPanel into my main.qml like this :
InputPanel { width: main.width * 0.8 z:999 id: myKeyBoard anchors.horizontalCenter: parent.horizontalCenter anchors.bottom: parent.bottom visible: false }
Then In my code I play with the visible of inputPanel and the focus of others items to make it appear or desappear.
So my issue is that the touch usualy used to hide the keyboard (corner bottom right of the virtual keyboard) isn't working anymore and I would like to connect it with a signal but I can't find the right one.
So I would be glad for someone to put me in the right direction.
Thank's in advance.