I have a Webview that displays a login page.. The page however does not scroll up when I go to enter text.. The text entry field remains under the keyboard and as such you cannot see when you type...
I tried putting the Webview inside of a ScrollView however it behaves exactly the same...
<ContentPage.Content>
<Grid>
<ScrollView>
<WebView x:Name="WebViewLogin" IsVisible="True" VerticalOptions="FillAndExpand" HorizontalOptions="FillAndExpand" BackgroundColor="White"/>
</ScrollView>
</Grid>
</ContentPage.Content>
How do you all overcome this ?