File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -111,6 +111,46 @@ The set of components and features may extend over time. Currently, StaticInput
111111```
112112</details >
113113
114+ ### MudStaticNavDrawerToggle
115+ <details >
116+ <summary >
117+ Open/Close a MudDrawer using a MudIconButton. When added, Responsive drawers also open/close based on page size changes.
118+ </summary >
119+
120+ ``` html
121+ <MudStaticNavDrawerToggle id =" static-left-toggle" DrawerId =" static-mini" Icon =" @Icons.Material.Filled.Menu" Color =" Color.Inherit" Edge =" Edge.Start" />
122+
123+ <MudDrawer id =" static-mini" Fixed =" false" Elevation =" 1" Anchor =" Anchor.Start" Variant =" @DrawerVariant.Mini" ClipMode =" DrawerClipMode.Always" >
124+ <MudNavMenu >
125+ <MudNavLink Match =" NavLinkMatch.All" Icon =" @Icons.Material.Filled.Store" >Store</MudNavLink >
126+ <MudNavLink Match =" NavLinkMatch.All" Icon =" @Icons.Material.Filled.LibraryBooks" >Library</MudNavLink >
127+ <MudNavLink Match =" NavLinkMatch.All" Icon =" @Icons.Material.Filled.Group" >Community</MudNavLink >
128+ </MudNavMenu >
129+ </MudDrawer >
130+ ```
131+ </details >
132+
133+ ### MudStaticNavGroup
134+ <details >
135+ <summary >
136+ Collapse/Expand a MudStaticNavGroup by clicking on it's title. Can you nested in a standard MudNavMenu
137+ </summary >
138+
139+ ``` html
140+ <MudNavMenu >
141+ <MudNavLink Href =" /dashboard" >Dashboard</MudNavLink >
142+ <MudNavLink Href =" /servers" >Servers</MudNavLink >
143+ <MudNavLink Href =" /billing" Disabled =" true" >Billing</MudNavLink >
144+
145+ <MudStaticNavGroup Title =" Settings" Expanded =" true" >
146+ <MudNavLink Href =" /users" >Users</MudNavLink >
147+ <MudNavLink Href =" /security" >Security</MudNavLink >
148+ </MudStaticNavGroup >
149+
150+ <MudNavLink Href =" /about" >About</MudNavLink >
151+ </MudNavMenu >
152+ ```
153+ </details >
114154
115155## :rocket : Getting Started :rocket :
116156To start using MudBlazor.StaticInput in your projects, simply install the package via NuGet Package Manager:
You can’t perform that action at this time.
0 commit comments