├── .babelrc ├── .gitignore ├── README.md ├── __tests__ └── index.js ├── demo.gif ├── index.js ├── package.json └── src ├── Drawer.js └── Message.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rationalappdev/react-native-bottom-drawer/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rationalappdev/react-native-bottom-drawer/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rationalappdev/react-native-bottom-drawer/HEAD/__tests__/index.js -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rationalappdev/react-native-bottom-drawer/HEAD/demo.gif -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rationalappdev/react-native-bottom-drawer/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rationalappdev/react-native-bottom-drawer/HEAD/package.json -------------------------------------------------------------------------------- /src/Drawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rationalappdev/react-native-bottom-drawer/HEAD/src/Drawer.js -------------------------------------------------------------------------------- /src/Message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rationalappdev/react-native-bottom-drawer/HEAD/src/Message.js --------------------------------------------------------------------------------