FillAndExpand does not work on my nested StackLayout nor the control itself has the VerticalOptions property. How to proceed?
<ContentPage.Content>
<StackLayout
HorizontalOptions="Fill"
VerticalOptions="FillAndExpand"> // does not work
<components:TabView
HeaderBackgroundColor="Transparent"
HeaderSelectionUnderlineColor="#4181EF"
HeaderSelectionUnderlineThickness="2"
HeaderTabTextColor="#262626"> // no 'VerticalOptions' (or any height options) here
<components:TabItem
HeaderText="Meus pedidos"
HeaderTextColor="#262626">
<StackLayout
HorizontalOptions="Fill"
VerticalOptions="FillAndExpand"> // works for the inner content, not the parent tab
<Label
Text="Meus pedidos"
FontSize="Large"
HorizontalOptions="Center"
VerticalOptions="FillAndExpand"
VerticalTextAlignment="Center"/>
</StackLayout>
</components:TabItem>
...
FillAndExpand
does not work on my nestedStackLayout
nor the control itself has theVerticalOptions
property. How to proceed?