Qt 6.11 is out! See what's new in the release
blog
Switch off scrolling application window up when virtual keyboard appeared . How?
-
Hello all!
When QML component TextInput attached to the bottom of application window and active focus is on this component, entire application window scrolling up when virtual appeared.
How to switch this scrolling up? Need to keep application window as it is.
-
For now haven't found any global solution to prevent window pan (scrolling up). If there are any and you know something about it write it here please.
Found only solution to trick it for iOS and switch off for Android with manifest.
Briefly for IOS need to be added custom event filter for TextInput that is falsifying QRectF of cursor position.
For Android just add to activity section this:android:windowSoftInputMode="adjustNothingHere got published example tested with Qt 6.11.1 It's using SafeArea (since Qt 6.9)
-
B bogong has marked this topic as solved