There's a similar question here but it seems rather out-dated since I use Qt 5.14. I have a similar problem.
I set the visible
property of my InputPanel
to active
and tried putting the TextField
into a TextInput
but still I cannot hide the keyboard via the close button available in the bottom right corner .
Currently there are two workarounds for me :
1 ) Adding the onAccepted
signal for any TextField
or TextInput
to hide the Virtual keyboard after hitting Enter
(on Real or virtual keyboard , both works)
2 ) Adding a redundant Button
to just hide the keyboard
But the clean method for closing it is what a typical user would expect : The specified button in the keyboard
Any help would be appreciated.