<navigation:SfNavigationDrawer x:Name="navigationDrawer" Grid.Row="2" IsOpen="{Binding IsFilterOpen, Mode=TwoWay}" Position="Top" Transition="Push" VerticalOptions="FillAndExpand" DrawerHeaderHeight="70" DrawerFooterHeight="0">
<navigation:SfNavigationDrawer.DrawerContentView>
<SfLisView x:Name="list" VerticalOptions="FillAndExpand" HorizontalOptions="FillAndExpand" />
</navigation:SfNavigationDrawer.DrawerContentView>
If I use SfListView within DrawerContentView of SfNavigationDrawer as above, it doesnt scroll. This is only the cause using Position="Top"
If I use Position="Right" , same code works fine.
How can I make this working?