Hello,
You can use Gird
to warp the Image and Label, then you can implement Text on the Image effect like the following code.
<StackLayout Grid.Column="1" Grid.Row="5" Grid.RowSpan="2">
<StackLayout.GestureRecognizers>
<TapGestureRecognizer Tapped="StackLayout_Tapped" />
</StackLayout.GestureRecognizers>
<Grid>
<Image Source="blueindex.jpg" />
<Label x:Name="Answer2" Text="TextBlock" TextColor="Black" FontSize="26.667" VerticalTextAlignment="Center" HeightRequest="210" />
</Grid>
</StackLayout>
Best Regards,
Leon Lu
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
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.