Horizontal scrolling inside material sidebar

Hi,
I have a question about this sidebar (https://www.fusetools.com/examples/material-drawer). I cannot support this question with actual code at the moment but I needed just a little help in making a decision. Would it be possible to add a horizontal scrolling element inside the sidebar. Do you have any suggestion?
Thank you and sorry for the weird post :smiley:

Yes you can. You are able to place a ScrollView inside the sidebar panel.

Spot on! I will only add that a ScrollView has an AllowedScrollDirections property, as in:

<ScrollView AllowedScrollDirections="Horizontal">
    <StackPanel Orientation="Horizontal">
        ...
    </StackPanel>
</ScrollView>

Ok thank you i’ll try!