There are ListView
, Entry
and Button
inside ContentPage
, something like this:
<StackLayout Orientation="Vertical">
<ListView>
...
...
</ListView>
<StackLayout Orientation="Horizontal">
<Entry ... />
<Button ... />
</StackLayout>
</StackLayout>
When I focus that Entry
, a keyboard overlaps Entry
and Button
.
I know, there is a solution: putting elements inside ScrollView
, but this solution makes huge problems with scrolling ListView
inside ScrollView
. What should I do, to make it work properly?