0
Good afternoon
I’m new to Xamarin and I’m having trouble overlapping elements. I made a few attempts, but unsuccessfully.
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"></ColumnDefinition>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="100"></RowDefinition>
</Grid.RowDefinitions>
<Frame Grid.Column="0" Grid.Row="1" >
<BoxView BackgroundColor="Red" HorizontalOptions="End" VerticalOptions="Start" CornerRadius="10" HeightRequest="15" WidthRequest="15"></BoxView>
</Frame>
<Button Grid.Column="0" Grid.Row="1" BackgroundColor="Accent" Text="Recados" Command="{Binding SwitchToTabCommand}" CommandParameter="4"></Button>
</Grid>
Can anyone tell me where the mistake is ?