├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── README.md ├── __tests__ ├── index.android.js └── index.ios.js ├── _config.yml ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── Feather.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ └── Zocial.ttf │ │ ├── java │ │ └── com │ │ │ └── rnboilerplate │ │ │ ├── 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.js ├── ios ├── RNBoilerplate-tvOS │ └── Info.plist ├── RNBoilerplate-tvOSTests │ └── Info.plist ├── RNBoilerplate.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── RNBoilerplate-tvOS.xcscheme │ │ └── RNBoilerplate.xcscheme ├── RNBoilerplate │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── RNBoilerplateTests │ ├── Info.plist │ └── RNBoilerplateTests.m ├── jsconfig.json ├── package.json ├── src ├── app.js ├── assets │ ├── constants │ │ ├── colors.js │ │ └── package.json │ └── images │ │ └── package.json ├── components │ ├── package.json │ └── settingsNavButton.js ├── network │ ├── api.js │ └── package.json ├── screens │ ├── authentication │ │ ├── package.json │ │ └── signin.js │ ├── chucknorris.js │ ├── home.js │ ├── package.json │ └── settings.js └── styles │ ├── chucknorris.js │ ├── home.js │ ├── package.json │ ├── settings.js │ └── signin.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/.buckconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/__tests__/index.android.js -------------------------------------------------------------------------------- /__tests__/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/__tests__/index.ios.js -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/_config.yml -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/rnboilerplate/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/android/app/src/main/java/com/rnboilerplate/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/rnboilerplate/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/android/app/src/main/java/com/rnboilerplate/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/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/Ali-Ayyad/react-native-boilerplate-chucknorris/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/Ali-Ayyad/react-native-boilerplate-chucknorris/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/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/app.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/index.js -------------------------------------------------------------------------------- /ios/RNBoilerplate-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/ios/RNBoilerplate-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/RNBoilerplate-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/ios/RNBoilerplate-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/RNBoilerplate.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/ios/RNBoilerplate.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/RNBoilerplate.xcodeproj/xcshareddata/xcschemes/RNBoilerplate-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/ios/RNBoilerplate.xcodeproj/xcshareddata/xcschemes/RNBoilerplate-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/RNBoilerplate.xcodeproj/xcshareddata/xcschemes/RNBoilerplate.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/ios/RNBoilerplate.xcodeproj/xcshareddata/xcschemes/RNBoilerplate.xcscheme -------------------------------------------------------------------------------- /ios/RNBoilerplate/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/ios/RNBoilerplate/AppDelegate.h -------------------------------------------------------------------------------- /ios/RNBoilerplate/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/ios/RNBoilerplate/AppDelegate.m -------------------------------------------------------------------------------- /ios/RNBoilerplate/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/ios/RNBoilerplate/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/RNBoilerplate/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/ios/RNBoilerplate/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/RNBoilerplate/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/ios/RNBoilerplate/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/RNBoilerplate/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/ios/RNBoilerplate/Info.plist -------------------------------------------------------------------------------- /ios/RNBoilerplate/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/ios/RNBoilerplate/main.m -------------------------------------------------------------------------------- /ios/RNBoilerplateTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/ios/RNBoilerplateTests/Info.plist -------------------------------------------------------------------------------- /ios/RNBoilerplateTests/RNBoilerplateTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/ios/RNBoilerplateTests/RNBoilerplateTests.m -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/package.json -------------------------------------------------------------------------------- /src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/src/app.js -------------------------------------------------------------------------------- /src/assets/constants/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/src/assets/constants/colors.js -------------------------------------------------------------------------------- /src/assets/constants/package.json: -------------------------------------------------------------------------------- 1 | {"name" : "constants"} 2 | -------------------------------------------------------------------------------- /src/assets/images/package.json: -------------------------------------------------------------------------------- 1 | {"name" : "images"} 2 | -------------------------------------------------------------------------------- /src/components/package.json: -------------------------------------------------------------------------------- 1 | {"name" : "components"} 2 | -------------------------------------------------------------------------------- /src/components/settingsNavButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/src/components/settingsNavButton.js -------------------------------------------------------------------------------- /src/network/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/src/network/api.js -------------------------------------------------------------------------------- /src/network/package.json: -------------------------------------------------------------------------------- 1 | {"name" : "network"} 2 | -------------------------------------------------------------------------------- /src/screens/authentication/package.json: -------------------------------------------------------------------------------- 1 | {"name" : "auth"} 2 | -------------------------------------------------------------------------------- /src/screens/authentication/signin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/src/screens/authentication/signin.js -------------------------------------------------------------------------------- /src/screens/chucknorris.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/src/screens/chucknorris.js -------------------------------------------------------------------------------- /src/screens/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/src/screens/home.js -------------------------------------------------------------------------------- /src/screens/package.json: -------------------------------------------------------------------------------- 1 | {"name" : "screens"} 2 | -------------------------------------------------------------------------------- /src/screens/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/src/screens/settings.js -------------------------------------------------------------------------------- /src/styles/chucknorris.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/src/styles/chucknorris.js -------------------------------------------------------------------------------- /src/styles/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/src/styles/home.js -------------------------------------------------------------------------------- /src/styles/package.json: -------------------------------------------------------------------------------- 1 | {"name" : "styles"} 2 | -------------------------------------------------------------------------------- /src/styles/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/src/styles/settings.js -------------------------------------------------------------------------------- /src/styles/signin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/src/styles/signin.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ali-Ayyad/react-native-boilerplate-chucknorris/HEAD/yarn.lock --------------------------------------------------------------------------------