You can add a frame to your XAML layout by using the element. For example:
XAML
<Frame CornerRadius="5" BorderColor="Black"
HasShadow="True"
HeightRequest="200"
WidthRequest="200">
<Label Text="Frame wrapped around a Label" />
</Frame>
Share with