Hello,
I would like to create simple Nav Drawer with Grid inside, showing first Logo, Name, then the options.
I would like to scroll ALL, Logo and the options, as in Landscape view there isn't much space (I have been using ListView scroll to avoid that problem).
I set the Header height to 0 and used the following code. ScrollView will not work with Grid or StackLayout or Frame combinations. I have tried requesting the Heights / Setting vertical options etc. I still cannot get the ScrollView to work.
Is there a way to get the ScrollView to work inside navigationdrawer:SfNavigationDrawer.DrawerContentView ?
...
</navigationdrawer:SfNavigationDrawer.ContentView>
<navigationdrawer:SfNavigationDrawer.DrawerContentView >
<ScrollView>
<StackLayout BackgroundColor="Yellow" >
<syncEffectsView:SfEffectsView TouchDownEffects="Ripple" CornerRadius="5"
VerticalOptions="CenterAndExpand" HorizontalOptions="CenterAndExpand">
<Button Text="Remove Ads"
HorizontalOptions="Center" VerticalOptions="Center" />
<Image Source="Question.png" Scale=" 0.5" HorizontalOptions="Center" VerticalOptions="Center"/>
<Label Text="Question" Style="{x:StaticResource MenuText}" FontSize="Medium"/>
<Image Source="Question.png" Scale=" 0.5" HorizontalOptions="Center" VerticalOptions="Center"/>
<Label Text="Question" Style="{x:StaticResource MenuText}" FontSize="Medium"/>
<Image Source="Question.png" Scale=" 0.5" HorizontalOptions="Center" VerticalOptions="Center"/>
<Label Text="Question" Style="{x:StaticResource MenuText}" FontSize="Medium"/>
</StackLayout>
</ScrollView>
</navigationdrawer:SfNavigationDrawer.DrawerContentView>
</navigationdrawer:SfNavigationDrawer>
</ContentPage>