App Layout
- Navbar Placement
- Drawer Toggle
- Scrolling Behaviour
- Bottom Navbar on Small Touchscreens
- Best Practices
App Layout is a component for building common application layouts.
Important
|
Scaled down examples
The examples on this page are scaled down so that their viewport-size dependant behavior can be demonstrated.
Some examples change their behavior also based on your browser viewport size.
|
The layout consists of three sections: a horizontal navigation bar (navbar), a collapsible navigation drawer (drawer) and a content area. An application’s main navigation blocks should be positioned in the navbar and/or drawer while views are rendered in the content area.
App Layout is responsive and adjusts automatically to fit desktop, tablet, and mobile screen sizes.
Navbar Placement
The navbar can be located on top or to the side of the drawer.
When put on top, the navbar is typically used as an application header. Application headers contain, for example, the application’s name and branding as well as actions that apply to the entire application such as notifications, settings, etc.
When placed to the side, the navbar is often seen as a view header, housing the view’s title, actions and secondary navigation that only relate to the current view.
Drawer Toggle
Show and hide the drawer using a Drawer Toggle (or a Button). The Drawer Toggle (☰) should always be accessible (unless the drawer is empty) and is most often situated in the navbar.
Scrolling Behaviour
Mobile browsers will collapse and expand their address bars when the user scrolls down and up respectively. On iOS you can tap the status bar (signal strength, battery, clock, etc) to scroll back to the top of the page/view. To enable this effect, neither the App Layout or its parent should have their heights defined.
Note
|
Scrolling containers with 100% height
This behaviour is not compatible with vertically scrollable Grids, or other scrolling containers within the content area, whose height is 100%.
|
Bottom Navbar on Small Touchscreens
When the navbar is used for navigation, the touch-optimized navbar slot can be used to provide a separate version of the navigation at the bottom of the UI, optimized for mobile phones.
Best Practices
Navbar vs Drawer
Make the choice between navbar and drawer primarily based on the number of items placed in it.
The navbar is a good choice for a small number of items (3–5), as these can fit into the viewport without scrolling.
When more items need to be displayed, or if small screen support is a priority, the drawer is a better choice, as it can accommodate a longer list of links without scrolling, and collapses into a hamburger menu on small screens. Furthermore, a vertical list of items is easier for the user to scan.
For applications that require multilevel or hierarchical navigation use the drawer to (at least) house the first level. The secondary (and tertiary) navigation items can be placed in either the drawer or the navbar.
F24E5FA2-4A7D-4002-B95E-CFF16029F5B6