├── .buckconfig ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── README.md ├── __tests__ └── App-test.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── AntDesign.ttf │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── Feather.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── FontAwesome5_Brands.ttf │ │ │ ├── FontAwesome5_Regular.ttf │ │ │ ├── FontAwesome5_Solid.ttf │ │ │ ├── Fontisto.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── JosefinSans-Bold.ttf │ │ │ ├── JosefinSans-BoldItalic.ttf │ │ │ ├── JosefinSans-Italic.ttf │ │ │ ├── JosefinSans-Light.ttf │ │ │ ├── JosefinSans-LightItalic.ttf │ │ │ ├── JosefinSans-Regular.ttf │ │ │ ├── JosefinSans-SemiBold.ttf │ │ │ ├── JosefinSans-SemiBoldItalic.ttf │ │ │ ├── JosefinSans-Thin.ttf │ │ │ ├── JosefinSans-ThinItalic.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ └── Zocial.ttf │ │ ├── java │ │ └── com │ │ │ └── sysboilerplatern │ │ │ ├── MainActivity.java │ │ │ ├── MainApplication.java │ │ │ └── SplashActivity.java │ │ └── res │ │ ├── layout │ │ └── launch_screen.xml │ │ ├── mipmap-hdpi │ │ ├── background_image.jpg │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-ldpi │ │ ├── background_image.jpg │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ ├── background_image.jpg │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── background_image.jpg │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── background_image.jpg │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── background_image.jpg │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── app ├── App.js ├── actions │ └── StartUpActions.js ├── components │ ├── landingScreen │ │ ├── LandingScreenComponent.js │ │ ├── LandingScreenContainer.js │ │ └── styles.js │ └── root │ │ ├── RootScreen.js │ │ └── RootScreenStyle.js ├── config │ └── index.js ├── navigators │ └── AppNavigator.js ├── reducers │ ├── StartUpReducer.js │ └── index.js ├── sagas │ ├── StartupSaga.js │ └── index.js ├── services │ └── NavigationService.js ├── stores │ └── CreateStore.js ├── theme │ ├── ApplicationStyles.js │ ├── Colors.js │ ├── Fonts.js │ ├── Helpers.js │ ├── Images.js │ ├── Metrics.js │ └── index.js └── utils │ ├── AsyncStorage.js │ ├── Constants.js │ ├── Scale.js │ ├── SendJSON.js │ ├── ShowToast.js │ └── Validators.js ├── assets └── images │ └── logo_systango.png ├── babel.config ├── babel.config.js ├── index.js ├── ios ├── Podfile ├── Podfile.lock ├── SplashStoryboard.storyboard ├── SysBoilerplateRN-Bridging-Header.h ├── SysBoilerplateRN-tvOS │ └── Info.plist ├── SysBoilerplateRN-tvOSTests │ └── Info.plist ├── SysBoilerplateRN.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── SysBoilerplateRN-tvOS.xcscheme │ │ └── SysBoilerplateRN.xcscheme ├── SysBoilerplateRN.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings ├── SysBoilerplateRN │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon-1024@1x.png │ │ │ ├── icon-20@1x.png │ │ │ ├── icon-20@2x.png │ │ │ ├── icon-20@3x.png │ │ │ ├── icon-29@1x.png │ │ │ ├── icon-29@2x.png │ │ │ ├── icon-29@3x.png │ │ │ ├── icon-40@1x.png │ │ │ ├── icon-40@2x.png │ │ │ ├── icon-40@3x.png │ │ │ ├── icon-50@1x.png │ │ │ ├── icon-50@2x.png │ │ │ ├── icon-57@1x.png │ │ │ ├── icon-57@2x.png │ │ │ ├── icon-60@2x.png │ │ │ ├── icon-60@3x.png │ │ │ ├── icon-72@1x.png │ │ │ ├── icon-72@2x.png │ │ │ ├── icon-76@1x.png │ │ │ ├── icon-76@2x.png │ │ │ └── icon-83.5@2x.png │ │ ├── Contents.json │ │ └── Splash.imageset │ │ │ ├── Contents.json │ │ │ ├── backgroundImage@1x.png │ │ │ ├── backgroundImage@2x.png │ │ │ └── backgroundImage@3x.png │ ├── Info.plist │ ├── SysBoilerplateRN.entitlements │ └── main.m └── SysBoilerplateRNTests │ ├── Info.plist │ └── SysBoilerplateRNTests.m ├── jsconfig.json ├── metro.config.js ├── package.json └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/__tests__/App-test.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/AntDesign.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/assets/fonts/AntDesign.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Fontisto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/assets/fonts/Fontisto.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/JosefinSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/assets/fonts/JosefinSans-Bold.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/JosefinSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/assets/fonts/JosefinSans-BoldItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/JosefinSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/assets/fonts/JosefinSans-Italic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/JosefinSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/assets/fonts/JosefinSans-Light.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/JosefinSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/assets/fonts/JosefinSans-LightItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/JosefinSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/assets/fonts/JosefinSans-Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/JosefinSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/assets/fonts/JosefinSans-SemiBold.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/JosefinSans-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/assets/fonts/JosefinSans-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/JosefinSans-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/assets/fonts/JosefinSans-Thin.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/JosefinSans-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/assets/fonts/JosefinSans-ThinItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/sysboilerplatern/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/java/com/sysboilerplatern/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/sysboilerplatern/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/java/com/sysboilerplatern/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/sysboilerplatern/SplashActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/java/com/sysboilerplatern/SplashActivity.java -------------------------------------------------------------------------------- /android/app/src/main/res/layout/launch_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/res/layout/launch_screen.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/background_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/res/mipmap-hdpi/background_image.jpg -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-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/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-ldpi/background_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/res/mipmap-ldpi/background_image.jpg -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/res/mipmap-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/background_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/res/mipmap-mdpi/background_image.jpg -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-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/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/background_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/res/mipmap-xhdpi/background_image.jpg -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-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/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/background_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/res/mipmap-xxhdpi/background_image.jpg -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-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/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/background_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/res/mipmap-xxxhdpi/background_image.jpg -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-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/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/app.json -------------------------------------------------------------------------------- /app/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/app/App.js -------------------------------------------------------------------------------- /app/actions/StartUpActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/app/actions/StartUpActions.js -------------------------------------------------------------------------------- /app/components/landingScreen/LandingScreenComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/app/components/landingScreen/LandingScreenComponent.js -------------------------------------------------------------------------------- /app/components/landingScreen/LandingScreenContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/app/components/landingScreen/LandingScreenContainer.js -------------------------------------------------------------------------------- /app/components/landingScreen/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/app/components/landingScreen/styles.js -------------------------------------------------------------------------------- /app/components/root/RootScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/app/components/root/RootScreen.js -------------------------------------------------------------------------------- /app/components/root/RootScreenStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/app/components/root/RootScreenStyle.js -------------------------------------------------------------------------------- /app/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/app/config/index.js -------------------------------------------------------------------------------- /app/navigators/AppNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/app/navigators/AppNavigator.js -------------------------------------------------------------------------------- /app/reducers/StartUpReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/app/reducers/StartUpReducer.js -------------------------------------------------------------------------------- /app/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/app/reducers/index.js -------------------------------------------------------------------------------- /app/sagas/StartupSaga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/app/sagas/StartupSaga.js -------------------------------------------------------------------------------- /app/sagas/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/app/sagas/index.js -------------------------------------------------------------------------------- /app/services/NavigationService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/app/services/NavigationService.js -------------------------------------------------------------------------------- /app/stores/CreateStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/app/stores/CreateStore.js -------------------------------------------------------------------------------- /app/theme/ApplicationStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/app/theme/ApplicationStyles.js -------------------------------------------------------------------------------- /app/theme/Colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/app/theme/Colors.js -------------------------------------------------------------------------------- /app/theme/Fonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/app/theme/Fonts.js -------------------------------------------------------------------------------- /app/theme/Helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/app/theme/Helpers.js -------------------------------------------------------------------------------- /app/theme/Images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/app/theme/Images.js -------------------------------------------------------------------------------- /app/theme/Metrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/app/theme/Metrics.js -------------------------------------------------------------------------------- /app/theme/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/app/theme/index.js -------------------------------------------------------------------------------- /app/utils/AsyncStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/app/utils/AsyncStorage.js -------------------------------------------------------------------------------- /app/utils/Constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/app/utils/Constants.js -------------------------------------------------------------------------------- /app/utils/Scale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/app/utils/Scale.js -------------------------------------------------------------------------------- /app/utils/SendJSON.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/app/utils/SendJSON.js -------------------------------------------------------------------------------- /app/utils/ShowToast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/app/utils/ShowToast.js -------------------------------------------------------------------------------- /app/utils/Validators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/app/utils/Validators.js -------------------------------------------------------------------------------- /assets/images/logo_systango.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/assets/images/logo_systango.png -------------------------------------------------------------------------------- /babel.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/babel.config -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/index.js -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/SplashStoryboard.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/SplashStoryboard.storyboard -------------------------------------------------------------------------------- /ios/SysBoilerplateRN-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/SysBoilerplateRN-Bridging-Header.h -------------------------------------------------------------------------------- /ios/SysBoilerplateRN-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/SysBoilerplateRN-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/SysBoilerplateRN-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/SysBoilerplateRN-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/SysBoilerplateRN.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/SysBoilerplateRN.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/SysBoilerplateRN.xcodeproj/xcshareddata/xcschemes/SysBoilerplateRN-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/SysBoilerplateRN.xcodeproj/xcshareddata/xcschemes/SysBoilerplateRN-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/SysBoilerplateRN.xcodeproj/xcshareddata/xcschemes/SysBoilerplateRN.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/SysBoilerplateRN.xcodeproj/xcshareddata/xcschemes/SysBoilerplateRN.xcscheme -------------------------------------------------------------------------------- /ios/SysBoilerplateRN.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/SysBoilerplateRN.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/SysBoilerplateRN.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/SysBoilerplateRN.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/SysBoilerplateRN.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/SysBoilerplateRN.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/SysBoilerplateRN/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/SysBoilerplateRN/AppDelegate.h -------------------------------------------------------------------------------- /ios/SysBoilerplateRN/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/SysBoilerplateRN/AppDelegate.m -------------------------------------------------------------------------------- /ios/SysBoilerplateRN/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/SysBoilerplateRN/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/SysBoilerplateRN/Images.xcassets/AppIcon.appiconset/icon-1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/SysBoilerplateRN/Images.xcassets/AppIcon.appiconset/icon-1024@1x.png -------------------------------------------------------------------------------- /ios/SysBoilerplateRN/Images.xcassets/AppIcon.appiconset/icon-20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/SysBoilerplateRN/Images.xcassets/AppIcon.appiconset/icon-20@1x.png -------------------------------------------------------------------------------- /ios/SysBoilerplateRN/Images.xcassets/AppIcon.appiconset/icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/SysBoilerplateRN/Images.xcassets/AppIcon.appiconset/icon-20@2x.png -------------------------------------------------------------------------------- /ios/SysBoilerplateRN/Images.xcassets/AppIcon.appiconset/icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/SysBoilerplateRN/Images.xcassets/AppIcon.appiconset/icon-20@3x.png -------------------------------------------------------------------------------- /ios/SysBoilerplateRN/Images.xcassets/AppIcon.appiconset/icon-29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/SysBoilerplateRN/Images.xcassets/AppIcon.appiconset/icon-29@1x.png -------------------------------------------------------------------------------- /ios/SysBoilerplateRN/Images.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/SysBoilerplateRN/Images.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /ios/SysBoilerplateRN/Images.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/SysBoilerplateRN/Images.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /ios/SysBoilerplateRN/Images.xcassets/AppIcon.appiconset/icon-40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/SysBoilerplateRN/Images.xcassets/AppIcon.appiconset/icon-40@1x.png -------------------------------------------------------------------------------- /ios/SysBoilerplateRN/Images.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/SysBoilerplateRN/Images.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /ios/SysBoilerplateRN/Images.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/SysBoilerplateRN/Images.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /ios/SysBoilerplateRN/Images.xcassets/AppIcon.appiconset/icon-50@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/SysBoilerplateRN/Images.xcassets/AppIcon.appiconset/icon-50@1x.png -------------------------------------------------------------------------------- /ios/SysBoilerplateRN/Images.xcassets/AppIcon.appiconset/icon-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/SysBoilerplateRN/Images.xcassets/AppIcon.appiconset/icon-50@2x.png -------------------------------------------------------------------------------- /ios/SysBoilerplateRN/Images.xcassets/AppIcon.appiconset/icon-57@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/SysBoilerplateRN/Images.xcassets/AppIcon.appiconset/icon-57@1x.png -------------------------------------------------------------------------------- /ios/SysBoilerplateRN/Images.xcassets/AppIcon.appiconset/icon-57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/SysBoilerplateRN/Images.xcassets/AppIcon.appiconset/icon-57@2x.png -------------------------------------------------------------------------------- /ios/SysBoilerplateRN/Images.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/SysBoilerplateRN/Images.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /ios/SysBoilerplateRN/Images.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/SysBoilerplateRN/Images.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /ios/SysBoilerplateRN/Images.xcassets/AppIcon.appiconset/icon-72@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/SysBoilerplateRN/Images.xcassets/AppIcon.appiconset/icon-72@1x.png -------------------------------------------------------------------------------- /ios/SysBoilerplateRN/Images.xcassets/AppIcon.appiconset/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/SysBoilerplateRN/Images.xcassets/AppIcon.appiconset/icon-72@2x.png -------------------------------------------------------------------------------- /ios/SysBoilerplateRN/Images.xcassets/AppIcon.appiconset/icon-76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/SysBoilerplateRN/Images.xcassets/AppIcon.appiconset/icon-76@1x.png -------------------------------------------------------------------------------- /ios/SysBoilerplateRN/Images.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/SysBoilerplateRN/Images.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /ios/SysBoilerplateRN/Images.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/SysBoilerplateRN/Images.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /ios/SysBoilerplateRN/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/SysBoilerplateRN/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/SysBoilerplateRN/Images.xcassets/Splash.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/SysBoilerplateRN/Images.xcassets/Splash.imageset/Contents.json -------------------------------------------------------------------------------- /ios/SysBoilerplateRN/Images.xcassets/Splash.imageset/backgroundImage@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/SysBoilerplateRN/Images.xcassets/Splash.imageset/backgroundImage@1x.png -------------------------------------------------------------------------------- /ios/SysBoilerplateRN/Images.xcassets/Splash.imageset/backgroundImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/SysBoilerplateRN/Images.xcassets/Splash.imageset/backgroundImage@2x.png -------------------------------------------------------------------------------- /ios/SysBoilerplateRN/Images.xcassets/Splash.imageset/backgroundImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/SysBoilerplateRN/Images.xcassets/Splash.imageset/backgroundImage@3x.png -------------------------------------------------------------------------------- /ios/SysBoilerplateRN/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/SysBoilerplateRN/Info.plist -------------------------------------------------------------------------------- /ios/SysBoilerplateRN/SysBoilerplateRN.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/SysBoilerplateRN/SysBoilerplateRN.entitlements -------------------------------------------------------------------------------- /ios/SysBoilerplateRN/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/SysBoilerplateRN/main.m -------------------------------------------------------------------------------- /ios/SysBoilerplateRNTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/SysBoilerplateRNTests/Info.plist -------------------------------------------------------------------------------- /ios/SysBoilerplateRNTests/SysBoilerplateRNTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/ios/SysBoilerplateRNTests/SysBoilerplateRNTests.m -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/jsconfig.json -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SystangoTechnologies/RN-Boilerplate/HEAD/yarn.lock --------------------------------------------------------------------------------