Package Exports
- react-native-drawer-layout
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-native-drawer-layout) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
react-native-drawer-layout 
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.
Add it to your project
- 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.
Demo
Examples
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-dismiss-keyboard Version |
---|---|
>= 11 & < 23 | < 1.0 |
>= 23 | >= 1.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.
Release Notes
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 in the onDrawerSlide callback.
Contribution
Please make sure to run the tests before proposing a PR by running npm test
.