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?
Asked
Active
Viewed 476 times
2
2 Answers
2
Here is the solution
ScrollView {
scrollViewProperties {
scrollMode: ScrollMode.Vertical
}
}

Vendetta
- 513
- 2
- 16
0
Add all your views inside a ScrollView. You'll then be able to scroll up to the unreachables items.

Benoit
- 1,922
- 16
- 25
-
1i have added scroll view to the main container any other solutions – Vendetta Jan 23 '13 at 05:34
-
What do you sayexactly ? You already had a scrollView and the problem before asking, or you have just added the scrollview and you still have the problem, or you have added the scrollview and it resolves the problem but you want another solution? – Benoit Jan 23 '13 at 09:43