Not receiving keyboard inputs for TextField in Release mode
Unsolved
Qt for WebAssembly
-
I am qt web assembly 6.5.2. I build my application in release mode. The keyboard input is not working in release mode but in debug mode, it works fine.
This issue happens when I add the TextFiled inside the Page QML like below
Page{ TextField { text: qsTr("Hello QMLGUI") anchors.horizontalCenter: parent font.family: Constants.font.family anchors.topMargin: 45 } }
Another observation: when I press the tab, it is allowing me to type. But clicking the text field does not.