Hello,
Welcome to our Microsoft Q&A platform!
You could have a try to use grid and Margin between UI elements. Since the top image is a little big, it doesn’t fit the circle completely, you could resize the image.
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="260" />
<RowDefinition Height="260" />
<RowDefinition Height="50" />
</Grid.RowDefinitions>
<Image Grid.Row="0"
Source="top2.png"
/>
<Image
Grid.Row="1"
Margin="0,-92,0,0"
Source="circle.png" />
<Label
Grid.Row="2"
Text="24"
HorizontalOptions="Center"
VerticalOptions="Center"
Margin="0,-430,0,0"
</Label>
</Grid>
Best Regards,
Wenyan Zhang
If the response is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.