Warm tip: This article is reproduced from stackoverflow.com, please click
xamarin.forms xaml

Making disign in Xmarin Forms

发布于 2020-03-27 15:47:11

I want to make a design just like the picture below

Example But I am not sure how to start. I have idea to make it with Frames and Grid.Something like:

<StackLayout>
        <Grid>
            <Grid.RowDefinitions>
                <RowDefinition Height="*"/>
                <RowDefinition Height="*"/>
                <RowDefinition Height="*"/>
            </Grid.RowDefinitions>
            <Frame Grid.Row="1" BackgroundColor="Gray">
            </Frame>
            <Frame BackgroundColor="LightGray" Grid.Row="2">
           </Frame>
        </Grid>
    </StackLayout>

But I have no idea how to make frame re-sizable when clicking on it. I want any kind of start

Questioner
Bonka
Viewed
66