├── .buckconfig ├── .bundle └── config ├── .env ├── .env.example ├── .eslintrc.js ├── .gitignore ├── .prettierrc.js ├── .ruby-version ├── .watchmanconfig ├── App.tsx ├── Gemfile ├── Gemfile.lock ├── README.md ├── __tests__ └── App-test.tsx ├── android ├── app │ ├── _BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── myapp │ │ │ └── ReactNativeFlipper.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── myapp │ │ │ ├── MainActivity.java │ │ │ ├── MainApplication.java │ │ │ └── newarchitecture │ │ │ ├── MainApplicationReactNativeHost.java │ │ │ ├── components │ │ │ └── MainComponentsRegistry.java │ │ │ └── modules │ │ │ └── MainApplicationTurboModuleManagerDelegate.java │ │ ├── jni │ │ ├── Android.mk │ │ ├── MainApplicationModuleProvider.cpp │ │ ├── MainApplicationModuleProvider.h │ │ ├── MainApplicationTurboModuleManagerDelegate.cpp │ │ ├── MainApplicationTurboModuleManagerDelegate.h │ │ ├── MainComponentsRegistry.cpp │ │ ├── MainComponentsRegistry.h │ │ └── OnLoad.cpp │ │ └── res │ │ ├── drawable │ │ └── rn_edit_text_material.xml │ │ ├── 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 ├── babel.config.js ├── index.js ├── ios ├── MyApp.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── MyApp.xcscheme ├── MyApp.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── MyApp │ ├── AppDelegate.h │ ├── AppDelegate.mm │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ └── main.m ├── MyAppTests │ ├── Info.plist │ └── MyAppTests.m ├── Podfile └── Podfile.lock ├── metro.config.js ├── package.json ├── src ├── common │ └── MyButton.tsx ├── config │ └── envConfig.ts ├── details │ └── Details.tsx ├── home │ └── Home.tsx ├── lib │ └── MyLib.ts ├── services │ └── pokemon.ts ├── settings │ └── Settings.tsx └── store │ └── store.ts ├── tsconfig.json └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/.buckconfig -------------------------------------------------------------------------------- /.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/.bundle/config -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | API_URL=https://pokeapi.co/api/v2/ 2 | -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | API_URL=https://pokeapi.co/api/v2/ 2 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.4 2 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/App.tsx -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App-test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/__tests__/App-test.tsx -------------------------------------------------------------------------------- /android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/android/app/_BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/com/myapp/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/android/app/src/debug/java/com/myapp/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/myapp/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/android/app/src/main/java/com/myapp/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/myapp/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/android/app/src/main/java/com/myapp/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/myapp/newarchitecture/MainApplicationReactNativeHost.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/android/app/src/main/java/com/myapp/newarchitecture/MainApplicationReactNativeHost.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/myapp/newarchitecture/components/MainComponentsRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/android/app/src/main/java/com/myapp/newarchitecture/components/MainComponentsRegistry.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/myapp/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/android/app/src/main/java/com/myapp/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java -------------------------------------------------------------------------------- /android/app/src/main/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/android/app/src/main/jni/Android.mk -------------------------------------------------------------------------------- /android/app/src/main/jni/MainApplicationModuleProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/android/app/src/main/jni/MainApplicationModuleProvider.cpp -------------------------------------------------------------------------------- /android/app/src/main/jni/MainApplicationModuleProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/android/app/src/main/jni/MainApplicationModuleProvider.h -------------------------------------------------------------------------------- /android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp -------------------------------------------------------------------------------- /android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h -------------------------------------------------------------------------------- /android/app/src/main/jni/MainComponentsRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/android/app/src/main/jni/MainComponentsRegistry.cpp -------------------------------------------------------------------------------- /android/app/src/main/jni/MainComponentsRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/android/app/src/main/jni/MainComponentsRegistry.h -------------------------------------------------------------------------------- /android/app/src/main/jni/OnLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/android/app/src/main/jni/OnLoad.cpp -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-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/ozcanzaferayan/react-native-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/ozcanzaferayan/react-native-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/ozcanzaferayan/react-native-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/ozcanzaferayan/react-native-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/ozcanzaferayan/react-native-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/ozcanzaferayan/react-native-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/ozcanzaferayan/react-native-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/ozcanzaferayan/react-native-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/ozcanzaferayan/react-native-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/ozcanzaferayan/react-native-boilerplate/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/index.js -------------------------------------------------------------------------------- /ios/MyApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/ios/MyApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/MyApp.xcodeproj/xcshareddata/xcschemes/MyApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/ios/MyApp.xcodeproj/xcshareddata/xcschemes/MyApp.xcscheme -------------------------------------------------------------------------------- /ios/MyApp.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/ios/MyApp.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/MyApp.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/ios/MyApp.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/MyApp/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/ios/MyApp/AppDelegate.h -------------------------------------------------------------------------------- /ios/MyApp/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/ios/MyApp/AppDelegate.mm -------------------------------------------------------------------------------- /ios/MyApp/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/ios/MyApp/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/MyApp/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/ios/MyApp/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/MyApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/ios/MyApp/Info.plist -------------------------------------------------------------------------------- /ios/MyApp/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/ios/MyApp/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/MyApp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/ios/MyApp/main.m -------------------------------------------------------------------------------- /ios/MyAppTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/ios/MyAppTests/Info.plist -------------------------------------------------------------------------------- /ios/MyAppTests/MyAppTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/ios/MyAppTests/MyAppTests.m -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /src/common/MyButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/src/common/MyButton.tsx -------------------------------------------------------------------------------- /src/config/envConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/src/config/envConfig.ts -------------------------------------------------------------------------------- /src/details/Details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/src/details/Details.tsx -------------------------------------------------------------------------------- /src/home/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/src/home/Home.tsx -------------------------------------------------------------------------------- /src/lib/MyLib.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/src/lib/MyLib.ts -------------------------------------------------------------------------------- /src/services/pokemon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/src/services/pokemon.ts -------------------------------------------------------------------------------- /src/settings/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/src/settings/Settings.tsx -------------------------------------------------------------------------------- /src/store/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/src/store/store.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozcanzaferayan/react-native-boilerplate/HEAD/yarn.lock --------------------------------------------------------------------------------