<!-- 1.1 Main image-->
<StackLayout Grid.Row="0" BackgroundColor="White" HeightRequest="350">
        <PanCake:PancakeView Grid.Row="0" CornerRadius="0,0,90,0"> 
                 <Grid ColumnDefinitions="*,Auto" BackgroundColor="#d4f1ef" HorizontalOptions="FillAndExpand">
                       <Image Grid.Column="0" Margin="10,20,10,20" Source="Deer" />
                       <Button Grid.Column="0" Grid.ColumnSpan="2" ImageSource="Bag" BackgroundColor="#90dbd5" Margin="0,15,15,0" VerticalOptions="Start" HorizontalOptions="End" HeightRequest="50" WidthRequest="50" CornerRadius="25"/>
                       <Button Grid.Column="1" VerticalOptions="Start" BackgroundColor="White" HorizontalOptions="End" Margin="0,9,15,0" HeightRequest="{OnPlatform iOS='16', Android='26'}" WidthRequest="{OnPlatform iOS='16', Android='26'}" CornerRadius="{OnPlatform iOS='8', Android='13'}" Text="1" FontAttributes="Bold" FontSize="7" TextColor="Red" />
                </Grid> 
         </PanCake:PancakeView>
</StackLayout>

<!-- Here add the code that is being explained in the next block-->