Search code examples
c#xamarinxamarin.iosuiwebview

How to make View not movable


I am having trouble removing what I think is the margin, padding or scroll from the xamarin.ios framework. As you can see from the gif below, when I scroll up or down the whole view seems to move. How can I prevent the user from being able to scroll the UIWebView element (if that is what causes the problem) away?

Visual representation


Solution

  • Use the following code

     webView.ScrollView.Bounces = false;