# react-native-drawer-layout **Repository Path**: mirrors_react-native-community/react-native-drawer-layout ## Basic Information - **Project Name**: react-native-drawer-layout - **Description**: A platform-agnostic drawer layout for react-native - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-18 - **Last Updated**: 2026-03-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## react-native-drawer-layout [![CircleCI](https://circleci.com/gh/react-native-community/react-native-drawer-layout/tree/master.svg?style=svg)](https://circleci.com/gh/react-native-community/react-native-drawer-layout/tree/master) [![styled with prettier](https://img.shields.io/badge/styled_with-prettier-ff69b4.svg)](https://github.com/prettier/prettier) A platform-agnostic drawer layout. It uses a pure JavaScript implementation on every platform to ensure consistency. We try to keep it up to date with the implementation of [DrawerLayoutAndroid](https://facebook.github.io/react-native/docs/drawerlayoutandroid.html#content) and add features we consider necessary as well. ## Add it to your project 1. Run `npm install react-native-drawer-layout --save` 2. Import the component by using one of these: - `var DrawerLayout = require('react-native-drawer-layout').default;` - `import DrawerLayout from 'react-native-drawer-layout';` 3. Follow the [DrawerLayoutAndroid](https://facebook.github.io/react-native/docs/drawerlayoutandroid.html#content) docs -- the API is the same. Everything that differs is explained below ## API This includes the differences between our implementation and the official one [DrawerLayoutAndroid](https://facebook.github.io/react-native/docs/drawerlayoutandroid.html#content). Every breaking change is (hopefully) hidden behind a feature flag, so that this implementation may also be used as polyfill. ## Demo ![](https://raw.githubusercontent.com/react-native-community/react-native-drawer-layout/master/example.gif) ## Examples - [Normal usage](https://github.com/DanielMSchmidt/DrawerLayoutExample) - [Heavy Load](https://github.com/DanielMSchmidt/DrawerLayoutHeavyLoadExample) To run the demo, please run `npm install` in the `DrawerLayoutExample/` directory and start the demo up from there like any other React Native application. ## Support | React Native Version     | react-native-drawer-layout Version | |---------------------------|---------------------------------------| | >= 11 & < 23 | < 1.0 | | >= 23 | >= 1.0 && < 2.0 | | >= 35 | >= 2.0 | If you experience any further restrictions with other versions, please let us know. ## Restrictions - Currently, there is no support for setting the status bar color in iOS. If you know any workaround, we would be glad to see an idea or a PR. - The overlay to close the drawer has a `zIndex` of 1000 so setting a higher `zIndex` somewhere else may lead to inconsistencies. ## Release Notes ### 2.0 #### Breaking changes - This version may only be used with React Native >= 0.35. For discussion see [#44](https://github.com/react-native-community/react-native-drawer-layout/pull/44) ### 1.0 #### Breaking changes: - This version may only be used with React Native >= 0.25 ### 0.3 #### Breaking changes: - The StatusBar is no longer dimmed by sliding the drawer layout automatically. To avoid this change you may use [StatusBarIOS.setHidden](https://facebook.github.io/react-native/docs/statusbarios.html#sethidden) in the [onDrawerSlide](https://facebook.github.io/react-native/docs/drawerlayoutandroid.html#ondrawerslide) callback. ## Contribution Please make sure to run the tests before proposing a PR by running `npm test`.