Simple List
Inbox
Sent
Trash
Spam
<MudPaper Width="300px"> <MudList Clickable="true"> <MudListItem Text="Inbox" Icon="@Icons.Material.Filled.Inbox" /> <MudListItem Text="Sent" Icon="@Icons.Material.Filled.Send" /> <MudDivider /> <MudListItem Text="Trash" /> <MudListItem Text="Spam" /> </MudList> </MudPaper>
Nested List
Nested List Items
Sent mail
Drafts
Inbox
Starred
Snoozed
<MudPaper Width="300px"> <MudList Clickable="true"> <MudListSubheader> Nested List Items </MudListSubheader> <MudListItem Icon="@Icons.Material.Filled.Send"> Sent mail </MudListItem> <MudListItem Icon="@Icons.Material.Filled.Drafts"> Drafts </MudListItem> <MudListItem Icon="@Icons.Material.Filled.Inbox" Text="Inbox" InitiallyExpanded="true"> <NestedList> <MudListItem Icon="@Icons.Material.Filled.StarRate"> Starred </MudListItem> <MudListItem Icon="@Icons.Material.Filled.WatchLater"> Snoozed </MudListItem> </NestedList> </MudListItem> </MudList> </MudPaper>