How do I remove or move the built-in virtual keyboard?
Solved
QML and Qt Quick
-
Hi!
The built-in keyboard obscures the input elements. I can create another keyboard in the place I want. But how to move or remove the built-in keyboard? -
In the test project, this code works fine, in another project, 2 keyboards are opened.
InputPanel { id: inputPanel z: 1 //y: Qt.inputMethod.visible ? parent.height - inputPanel.height : parent.height anchors.left: parent.left anchors.right: parent.right anchors.top: parent.top visible: Qt.inputMethod.visible }