├── .buckconfig ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── LICENSE ├── README.md ├── __tests__ └── App-test.js ├── android ├── app │ ├── _BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── rnboilerplate │ │ │ └── ReactNativeFlipper.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── rnboilerplate │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── app ├── Entrypoint.js ├── api │ ├── ApiConstants.js │ ├── index.js │ └── methods │ │ └── loginUser.js ├── assets │ └── react-native.png ├── components │ └── index.js ├── config │ ├── images.js │ ├── metrics.js │ └── styles.js ├── features │ ├── home │ │ ├── actions.js │ │ ├── components │ │ │ └── index.js │ │ ├── containers │ │ │ ├── index.js │ │ │ └── styles.js │ │ ├── homeSaga.js │ │ ├── reducers.js │ │ ├── selectors.js │ │ └── types.js │ └── login │ │ ├── actions.js │ │ ├── components │ │ └── index.js │ │ ├── containers │ │ ├── index.js │ │ └── styles.js │ │ ├── reducers.js │ │ ├── sagas │ │ ├── index.js │ │ └── loginSaga.js │ │ ├── selectors.js │ │ └── types.js ├── lib │ ├── createReducer.js │ └── isIphoneX.js ├── navigation │ ├── NavigationService.js │ ├── NavigationStack.js │ └── index.js ├── package.json ├── store │ ├── index.js │ ├── reducers.js │ └── sagas.js └── utils │ └── stringUtils.js ├── babel.config.js ├── index.js ├── ios ├── Podfile ├── Podfile.lock ├── RNBoilerPlate-tvOS │ └── Info.plist ├── RNBoilerPlate-tvOSTests │ └── Info.plist ├── RNBoilerPlate.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── RNBoilerPlate-tvOS.xcscheme │ │ └── RNBoilerPlate.xcscheme ├── RNBoilerPlate.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── 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 ├── metro.config.js ├── package.json └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/__tests__/App-test.js -------------------------------------------------------------------------------- /android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/android/app/_BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/com/rnboilerplate/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/android/app/src/debug/java/com/rnboilerplate/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/rnboilerplate/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/android/app/src/main/java/com/rnboilerplate/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/rnboilerplate/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/android/app/src/main/java/com/rnboilerplate/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/app.json -------------------------------------------------------------------------------- /app/Entrypoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/app/Entrypoint.js -------------------------------------------------------------------------------- /app/api/ApiConstants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/app/api/ApiConstants.js -------------------------------------------------------------------------------- /app/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/app/api/index.js -------------------------------------------------------------------------------- /app/api/methods/loginUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/app/api/methods/loginUser.js -------------------------------------------------------------------------------- /app/assets/react-native.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/app/assets/react-native.png -------------------------------------------------------------------------------- /app/components/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/config/images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/app/config/images.js -------------------------------------------------------------------------------- /app/config/metrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/app/config/metrics.js -------------------------------------------------------------------------------- /app/config/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/app/config/styles.js -------------------------------------------------------------------------------- /app/features/home/actions.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/features/home/components/index.js: -------------------------------------------------------------------------------- 1 | // index 2 | -------------------------------------------------------------------------------- /app/features/home/containers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/app/features/home/containers/index.js -------------------------------------------------------------------------------- /app/features/home/containers/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/app/features/home/containers/styles.js -------------------------------------------------------------------------------- /app/features/home/homeSaga.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/features/home/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/app/features/home/reducers.js -------------------------------------------------------------------------------- /app/features/home/selectors.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/features/home/types.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/features/login/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/app/features/login/actions.js -------------------------------------------------------------------------------- /app/features/login/components/index.js: -------------------------------------------------------------------------------- 1 | //index.js 2 | -------------------------------------------------------------------------------- /app/features/login/containers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/app/features/login/containers/index.js -------------------------------------------------------------------------------- /app/features/login/containers/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/app/features/login/containers/styles.js -------------------------------------------------------------------------------- /app/features/login/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/app/features/login/reducers.js -------------------------------------------------------------------------------- /app/features/login/sagas/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/app/features/login/sagas/index.js -------------------------------------------------------------------------------- /app/features/login/sagas/loginSaga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/app/features/login/sagas/loginSaga.js -------------------------------------------------------------------------------- /app/features/login/selectors.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/features/login/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/app/features/login/types.js -------------------------------------------------------------------------------- /app/lib/createReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/app/lib/createReducer.js -------------------------------------------------------------------------------- /app/lib/isIphoneX.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/app/lib/isIphoneX.js -------------------------------------------------------------------------------- /app/navigation/NavigationService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/app/navigation/NavigationService.js -------------------------------------------------------------------------------- /app/navigation/NavigationStack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/app/navigation/NavigationStack.js -------------------------------------------------------------------------------- /app/navigation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/app/navigation/index.js -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "app" 3 | } 4 | -------------------------------------------------------------------------------- /app/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/app/store/index.js -------------------------------------------------------------------------------- /app/store/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/app/store/reducers.js -------------------------------------------------------------------------------- /app/store/sagas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/app/store/sagas.js -------------------------------------------------------------------------------- /app/utils/stringUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/app/utils/stringUtils.js -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/index.js -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/RNBoilerPlate-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/ios/RNBoilerPlate-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/RNBoilerPlate-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/ios/RNBoilerPlate-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/RNBoilerPlate.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/ios/RNBoilerPlate.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/RNBoilerPlate.xcodeproj/xcshareddata/xcschemes/RNBoilerPlate-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/ios/RNBoilerPlate.xcodeproj/xcshareddata/xcschemes/RNBoilerPlate-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/RNBoilerPlate.xcodeproj/xcshareddata/xcschemes/RNBoilerPlate.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/ios/RNBoilerPlate.xcodeproj/xcshareddata/xcschemes/RNBoilerPlate.xcscheme -------------------------------------------------------------------------------- /ios/RNBoilerPlate.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/ios/RNBoilerPlate.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/RNBoilerPlate.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/ios/RNBoilerPlate.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/RNBoilerPlate/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/ios/RNBoilerPlate/AppDelegate.h -------------------------------------------------------------------------------- /ios/RNBoilerPlate/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/ios/RNBoilerPlate/AppDelegate.m -------------------------------------------------------------------------------- /ios/RNBoilerPlate/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/ios/RNBoilerPlate/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/RNBoilerPlate/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/ios/RNBoilerPlate/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/RNBoilerPlate/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/ios/RNBoilerPlate/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/RNBoilerPlate/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/ios/RNBoilerPlate/Info.plist -------------------------------------------------------------------------------- /ios/RNBoilerPlate/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/ios/RNBoilerPlate/main.m -------------------------------------------------------------------------------- /ios/RNBoilerPlateTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/ios/RNBoilerPlateTests/Info.plist -------------------------------------------------------------------------------- /ios/RNBoilerPlateTests/RNBoilerPlateTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/ios/RNBoilerPlateTests/RNBoilerPlateTests.m -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorkvarghese/react-native-feature-boilerplate/HEAD/yarn.lock --------------------------------------------------------------------------------