Reputation: 77
is it possible to deactivated this stetching animation which you can see when you scroll up or down at the start or the end of an website in a webview?
Here is one image of the problem:
Thans for your help!
Upvotes: 0
Views: 633
Reputation: 1108
This is the default iOS behavior, you need to write a Custom Renderer for disabling it
protected override void OnElementChanged(VisualElementChangedEventArgs e)
{
base.OnElementChanged(e);
ScrollView.Bounces = false;
}
Upvotes: 2