├── .expo-shared └── assets.json ├── .gitignore ├── App.js ├── CustomDrawer.js ├── Navigation.js ├── README.md ├── Screens.js ├── app.json ├── assets ├── favicon.png ├── icon.png └── splash.png ├── babel.config.js ├── package.json ├── react-native-custom-drawer-animation-dribbble-preview.gif ├── utils.js ├── yarn-error.log └── yarn.lock /.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalinmiron/react-native-custom-drawer-animation-react-navigation/HEAD/.expo-shared/assets.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalinmiron/react-native-custom-drawer-animation-react-navigation/HEAD/.gitignore -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalinmiron/react-native-custom-drawer-animation-react-navigation/HEAD/App.js -------------------------------------------------------------------------------- /CustomDrawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalinmiron/react-native-custom-drawer-animation-react-navigation/HEAD/CustomDrawer.js -------------------------------------------------------------------------------- /Navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalinmiron/react-native-custom-drawer-animation-react-navigation/HEAD/Navigation.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalinmiron/react-native-custom-drawer-animation-react-navigation/HEAD/README.md -------------------------------------------------------------------------------- /Screens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalinmiron/react-native-custom-drawer-animation-react-navigation/HEAD/Screens.js -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalinmiron/react-native-custom-drawer-animation-react-navigation/HEAD/app.json -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalinmiron/react-native-custom-drawer-animation-react-navigation/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalinmiron/react-native-custom-drawer-animation-react-navigation/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalinmiron/react-native-custom-drawer-animation-react-navigation/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalinmiron/react-native-custom-drawer-animation-react-navigation/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalinmiron/react-native-custom-drawer-animation-react-navigation/HEAD/package.json -------------------------------------------------------------------------------- /react-native-custom-drawer-animation-dribbble-preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalinmiron/react-native-custom-drawer-animation-react-navigation/HEAD/react-native-custom-drawer-animation-dribbble-preview.gif -------------------------------------------------------------------------------- /utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalinmiron/react-native-custom-drawer-animation-react-navigation/HEAD/utils.js -------------------------------------------------------------------------------- /yarn-error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalinmiron/react-native-custom-drawer-animation-react-navigation/HEAD/yarn-error.log -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalinmiron/react-native-custom-drawer-animation-react-navigation/HEAD/yarn.lock --------------------------------------------------------------------------------