NavigationView Like Win UI 3 #935
Closed
davidbuckleyni
started this conversation in
General
Replies: 2 comments
-
It is possible to customise the Flyout display options to group items together, I appreciate this might not directly match what is in the screenshot but it does show some level of customisation. To further customise Shell you can actually put whatever you like in the Flyout through the <Shell.FlyoutContent>
<CollectionView
ItemsSource="{Binding Boards}"
SelectionMode="Single"
Margin="0,100,0,0"
SelectedItem="{Binding CurrentBoard}">
<CollectionView.ItemTemplate>
<DataTemplate x:DataType="models:Board">
<Label
Text="{Binding Name}"
FontSize="20"
Padding="10,0,0,0" />
</DataTemplate>
</CollectionView.ItemTemplate>
</CollectionView>
</Shell.FlyoutContent> |
Beta Was this translation helpful? Give feedback.
0 replies
-
Closed as per the Community Stand-up discussion here: https://youtu.be/N9wMcBP4jtg?t=2889 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
We really need a navigation view like win ui 3 has while shell is good on mobile allot of modern apps and windows use the navigationview
While we could use shell and leave it as flyout it doesnt mimic how this one works in that you can collapse it and the menu items and child items.
Beta Was this translation helpful? Give feedback.
All reactions