---
productId: material-ui
title: React Drawer component
components: Drawer, SwipeableDrawer
githubLabel: 'scope: drawer'
materialDesign: https://m2.material.io/components/navigation-drawer
githubSource: packages/mui-material/src/Drawer
---
# Drawer
The navigation drawers (or "sidebars") provide ergonomic access to destinations in a site or app functionality such as switching accounts.
A navigation drawer can either be permanently on-screen or controlled by a navigation menu icon.
[Side sheets](https://m2.material.io/components/sheets-side) are supplementary surfaces primarily used on tablet and desktop.
{{"component": "@mui/docs/ComponentLinkHeader"}}
## Temporary drawer
Temporary navigation drawers can toggle open or closed. Closed by default, the drawer opens temporarily above all other content until a section is selected.
The Drawer can be cancelled by clicking the overlay or pressing the Esc key.
It closes when an item is selected, handled by controlling the `open` prop.
{{"demo": "TemporaryDrawer.js"}}
### Anchor
Use the `anchor` prop to specify which side of the screen the Drawer should originate from.
The default value is `left`.
{{"demo": "AnchorTemporaryDrawer.js"}}
### Swipeable
You can make the drawer swipeable with the `SwipeableDrawer` component.
This component comes with a 2 kB gzipped payload overhead.
Some low-end mobile devices won't be able to follow the fingers at 60 FPS.
You can use the `disableBackdropTransition` prop to help.
{{"demo": "SwipeableTemporaryDrawer.js"}}
The following properties are used in this documentation website for optimal usability of the component:
- iOS is hosted on high-end devices.
The backdrop transition can be enabled without dropping frames.
The performance will be good enough.
- iOS has a "swipe to go back" feature that interferes
with the discovery feature, so discovery has to be disabled.
```jsx
const iOS =
typeof navigator !== 'undefined' && /iPad|iPhone|iPod/.test(navigator.userAgent);
;
```
### Swipeable edge
You can configure the `SwipeableDrawer` to have a visible edge when closed.
If you are on a desktop, you can toggle the drawer with the "OPEN" button.
If you are on mobile, you can open the demo in CodeSandbox ("edit" icon) and swipe.
{{"demo": "SwipeableEdgeDrawer.js", "iframe": true, "disableLiveEdit": true, "height": 400, "maxWidth": 300}}
### Keep mounted
The Modal used internally by the Swipeable Drawer has the `keepMounted` prop set by default.
This means that the contents of the drawer are always present in the DOM.
You can change this default behavior with the `ModalProps` prop, but you may encounter issues with `keepMounted: false` in React 18.
```jsx
```
## Responsive drawer
You can use the `temporary` variant to display a drawer for small screens and `permanent` for a drawer for wider screens.
{{"demo": "ResponsiveDrawer.js", "iframe": true, "disableLiveEdit": true}}
## Persistent drawer
Persistent navigation drawers can toggle open or closed.
The drawer sits on the same surface elevation as the content.
It is closed by default and opens by selecting the menu icon, and stays open until closed by the user.
The state of the drawer is remembered from action to action and session to session.
When the drawer is outside of the page grid and opens, the drawer forces other content to change size and adapt to the smaller viewport.
Persistent navigation drawers are acceptable for all sizes larger than mobile.
They are not recommended for apps with multiple levels of hierarchy that require using an up arrow for navigation.
{{"demo": "PersistentDrawerLeft.js", "iframe": true}}
{{"demo": "PersistentDrawerRight.js", "iframe": true}}
## Mini variant drawer
In this variation, the persistent navigation drawer changes its width.
Its resting state is as a mini-drawer at the same elevation as the content, clipped by the app bar.
When expanded, it appears as the standard persistent navigation drawer.
The mini variant is recommended for apps sections that need quick selection access alongside content.
{{"demo": "MiniDrawer.js", "iframe": true}}
## Permanent drawer
Permanent navigation drawers are always visible and pinned to the left edge, at the same elevation as the content or background. They cannot be closed.
Permanent navigation drawers are the **recommended default for desktop**.
### Full-height navigation
Apps focused on information consumption that use a left-to-right hierarchy.
{{"demo": "PermanentDrawerLeft.js", "iframe": true}}
{{"demo": "PermanentDrawerRight.js", "iframe": true}}
### Clipped under the app bar
Apps focused on productivity that require balance across the screen.
{{"demo": "ClippedDrawer.js", "iframe": true}}