<ViewCell>
<Frame BorderColor="#AC94C9"
WidthRequest="3"
BackgroundColor="Transparent"
CornerRadius="30"
Padding="-10"
Margin="20"
>
<Grid Padding="30">
<Label Text="{Binding WorkoutName}" FontAttributes="Bold" HeightRequest="10" FontSize="22" Grid.Row="0" Grid.Column="0"/>
<ImageButton
CommandParameter="{Binding .}"
HorizontalOptions="End" Margin="5"
HeightRequest="30"
Grid.Row="0"
BackgroundColor="Transparent"
Source="purple_bin.png">
</ImageButton>
I want the bin image to be on the same row as the workout name.
Also I wanted to ask is it generally bad to use negative padding since i dont see it anywhere. I tried to change the margin of the bin but when it lines up with the workouts with one exercise it doesnt line up with the workout with 2 or more and vice versa. Thanks in advance.