Reputation: 513
I am having a TextField in qml layout, while enabling the keyboard the first TextField is showing and below all the TextField is hiding. How do I solve this issue?
Upvotes: 2
Views: 480
Reputation: 513
Here is the solution
ScrollView {
scrollViewProperties {
scrollMode: ScrollMode.Vertical
}
}
Upvotes: 2
Reputation: 1921
Add all your views inside a ScrollView. You'll then be able to scroll up to the unreachables items.
Upvotes: 0