Quantcast
Channel: Xamarin.Forms — Xamarin Community Forums
Viewing all articles
Browse latest Browse all 58056

Disable scrolling in WebView

$
0
0

Hi,

I have Image and Webview on the page inside of ScrollView.

<ScrollView>
    <StackLayout
                                Orientation="Vertical">
        <Label Text="{Binding Title}"
                                        VerticalOptions="Start" />
        <Image Aspect="AspectFill"
            HorizontalOptions="FillAndExpand"
            Source="{Binding DetailedImage}" />

            <WebView Source="{Binding Description}"
                                        VerticalOptions="FillAndExpand" />
            </StackLayout>
        </ScrollView>

The problem is that webview uses it's own scroller and image is always on top, but I want to have it fixed size and scroll together with image. Is it possible to do in simple way (without custom renderers etc)?

PS. Was tested only on Android yet.
Thanks!


Viewing all articles
Browse latest Browse all 58056

Trending Articles