ScrollView the Sidebar from the "Examples"

Hi guy I want to make Sidebar from the examples page here-> https://www.fusetools.com/examples/social-media-screen become scroll-able because when I get landscape orientation the Sidebar cannot reach all of sidebar menu.

here my screenshot on potrait:

on landscape: file

here the code on Examples Page: https://res.cloudinary.com/fusetools/raw/upload/example-docs/635847410615924368/bundles/social-media-screen.zip

I want to know where should i place the “ScrollView” Tags when this is happen. thanks for help…

You should put the ScrollView inside the Panel you have chosen as your left edge panel.

Here is an example:

<EdgeNavigator ux:Name="EdgeNavigator">
    <Panel EdgeNavigation.Edge="Left" Width="180" ux:Name="menu" Background="Green">
        <ScrollView>
            <StackPanel>
                <Each Count="10" >
                    <Rectangle Height="60" Margin="5" Fill="Yellow" />
                </Each>
            </StackPanel>
        </ScrollView>
    </Panel>

    <Panel Background="Red">
        <!-- the main panel -->
    </Panel>
</EdgeNavigator>