A platform-agnostic drawer layout. Pure JavaScript implementation on iOS and native implementation on Android. Why? Because the drawer layout is a useful component regardless of the platform! And if you can use it without changing any code, that's perfect.
- Run
npm install react-native-drawer-layout --save
- Import the component by using one of these:
var DrawerLayout = require('react-native-drawer-layout');
import DrawerLayout from 'react-native-drawer-layout';
- Follow the DrawerLayoutAndroid docs -- the API is the same.
React Native Version | react-native-dismiss-keyboard Version |
---|---|
>= 11 & < 23 | < 1.0 |
>= 23 | >= 1.0 |
If you experience any restrictions with other versions, please let us know.
- This version may only be used with React Native >= 0.25
- The StatusBar is no longer dimmed by sliding the drawer layout automatically. To avoid this change you may use StatusBarIOS.setHidden in the onDrawerSlide callback.
Please make sure to run the tests before proposing a PR by running npm test
.