├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── README.md ├── __tests__ ├── index.android.js └── index.ios.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ └── Zocial.ttf │ │ ├── java │ │ └── com │ │ │ └── reactnavigationdrawer │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── app.json ├── index.android.js ├── index.ios.js ├── ios ├── reactnavigationdrawer-tvOS │ └── Info.plist ├── reactnavigationdrawer-tvOSTests │ └── Info.plist ├── reactnavigationdrawer.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── reactnavigationdrawer-tvOS.xcscheme │ │ └── reactnavigationdrawer.xcscheme ├── reactnavigationdrawer │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── reactnavigationdrawerTests │ ├── Info.plist │ └── reactnavigationdrawerTests.m ├── jsconfig.json ├── package.json ├── src ├── App.js ├── assets │ └── img │ │ ├── hooli.png │ │ └── piedpiper.png └── containers │ ├── DrawerMenu.js │ ├── HooliContainer.js │ └── PiedPiperContainer.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/.buckconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/__tests__/index.android.js -------------------------------------------------------------------------------- /__tests__/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/__tests__/index.ios.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/reactnavigationdrawer/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/android/app/src/main/java/com/reactnavigationdrawer/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/reactnavigationdrawer/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/android/app/src/main/java/com/reactnavigationdrawer/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/app.json -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/index.android.js -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/index.ios.js -------------------------------------------------------------------------------- /ios/reactnavigationdrawer-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/ios/reactnavigationdrawer-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/reactnavigationdrawer-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/ios/reactnavigationdrawer-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/reactnavigationdrawer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/ios/reactnavigationdrawer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/reactnavigationdrawer.xcodeproj/xcshareddata/xcschemes/reactnavigationdrawer-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/ios/reactnavigationdrawer.xcodeproj/xcshareddata/xcschemes/reactnavigationdrawer-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/reactnavigationdrawer.xcodeproj/xcshareddata/xcschemes/reactnavigationdrawer.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/ios/reactnavigationdrawer.xcodeproj/xcshareddata/xcschemes/reactnavigationdrawer.xcscheme -------------------------------------------------------------------------------- /ios/reactnavigationdrawer/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/ios/reactnavigationdrawer/AppDelegate.h -------------------------------------------------------------------------------- /ios/reactnavigationdrawer/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/ios/reactnavigationdrawer/AppDelegate.m -------------------------------------------------------------------------------- /ios/reactnavigationdrawer/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/ios/reactnavigationdrawer/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/reactnavigationdrawer/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/ios/reactnavigationdrawer/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/reactnavigationdrawer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/ios/reactnavigationdrawer/Info.plist -------------------------------------------------------------------------------- /ios/reactnavigationdrawer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/ios/reactnavigationdrawer/main.m -------------------------------------------------------------------------------- /ios/reactnavigationdrawerTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/ios/reactnavigationdrawerTests/Info.plist -------------------------------------------------------------------------------- /ios/reactnavigationdrawerTests/reactnavigationdrawerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/ios/reactnavigationdrawerTests/reactnavigationdrawerTests.m -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/package.json -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/src/App.js -------------------------------------------------------------------------------- /src/assets/img/hooli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/src/assets/img/hooli.png -------------------------------------------------------------------------------- /src/assets/img/piedpiper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/src/assets/img/piedpiper.png -------------------------------------------------------------------------------- /src/containers/DrawerMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/src/containers/DrawerMenu.js -------------------------------------------------------------------------------- /src/containers/HooliContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/src/containers/HooliContainer.js -------------------------------------------------------------------------------- /src/containers/PiedPiperContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/src/containers/PiedPiperContainer.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XavierColombel/react-navigation-drawer-example/HEAD/yarn.lock --------------------------------------------------------------------------------