ARTICLE AD BOX
In Android this layout works fine, but in iOS it creates some extra scrollable white space in the bottom in very special circumstances.
<ScrollView> <VerticalStackLayout Padding="16"> <Label Text="Header" FontSize="24" Margin="0,0,0,16" /> <CollectionView ItemsSource="{Binding Items}" BackgroundColor="LightGray"> <CollectionView.ItemTemplate> <DataTemplate> <Frame Margin="0,0,0,8" Padding="12"> <Label Text="{Binding .}" /> </Frame> </DataTemplate> </CollectionView.ItemTemplate> </CollectionView> </VerticalStackLayout> </ScrollView>I found an alternate workaround for this but do we have something solid for this like what is the root cause problem here.
Here is the alternate workaround -
