Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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 user scrolls WebView is scrolling while image stays in place.

Is is possible to disable WebView scrolling? So image and WebView would scroll simultaneously.

I know that one solution is to embed image into HTML, but are there other solutions?

like image 751
pfedotovsky Avatar asked Apr 27 '16 17:04

pfedotovsky


1 Answers

Just set Webview.IsEnabled to false. It works when you don't have to interact with the Webpage.

like image 136
Asdf Qwertz Avatar answered Sep 20 '22 05:09

Asdf Qwertz