You can set the background color of a frame using the BackgroundColor property:
XAML
<Frame CornerRadius="5" BorderColor="Black"
HasShadow="True"
HeightRequest="200"
BackgroundColor="Gray"
WidthRequest="200">
<Label Text="Frame wrapped around a Label" />
</Frame>
Share with