I tried this in my code.
<StackLayout
HorizontalOptions="FillAndExpand"
Spacing="0"
MinimumHeightRequest="50">
<StackLayout Margin="20, 6, 20, 8"
HorizontalOptions="FillAndExpand"
VerticalOptions="FillAndExpand"
Spacing="0">
<Label Text="ABC"
HorizontalOptions="Start"
VerticalOptions="StartAndExpand" />
</StackLayout>
</StackLayout>
But with small text such as ABC then the height is not equal to 50. Is there some way I can ensure the height is a minimum of 50?