if i have code like below, Sflisview is not extending within the Stacklayout and half of the page is empty. I have to VerticalOptions="FillAndExpand" to fix the layout. It works in earlier versions. Obviously there is something breaking in this release.
<StackLayout Orientation="Vertical" VerticalOptions="FillAndExpand">
<sfListView:SfListView x:Name="list" ItemsSource="{Binding Items}" SelectionMode="Single" SelectionGesture="Tap"
SelectedItem="{Binding SelectedItem, Mode=OneWayToSource}" ItemSpacing="3" AllowSwiping="False" AllowGroupExpandCollapse="True"
SelectionBackgroundColor= "{DynamicResource backgroundColor}" GroupHeaderTemplate="{StaticResource GroupHeaderTemplate}">
<sfListView:SfListView.LayoutManager>
<sfListView:GridLayout SpanCount="4" />
</sfListView:SfListView.LayoutManager>
<sfListView:SfListView.ItemSize>
<OnIdiom x:TypeArguments="x:Double" Phone="150" Tablet="250" Desktop="300" />
</sfListView:SfListView.ItemSize>