Disable WebView Scrolling in Xamarin.Forms

I want to display a page with an image on top and with a WebView containing HTML text.

The problem is that WebView has its own scrolling, so when the user scrolls the WebView, it scrolls while the image stays in place.

Can I disable WebView scrolling? Thus, the image and WebView will scroll simultaneously.

I know that one of the solutions is embedding the image in HTML, but are there any other solutions?

+4
source share
2 answers

Just set the parameter Webview.IsEnabledto false. It works when you do not need to interact with a web page.

+3

. - WebView. , iOS Android, Windows . , , .

+2

All Articles