├── .buckconfig ├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── README.md ├── android ├── app │ ├── _BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── simplereactnativestarter │ │ │ └── ReactNativeFlipper.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── simplereactnativestarter │ │ │ ├── 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 ├── babel.config.js ├── index.js ├── ios ├── Podfile ├── Podfile.lock ├── SimpleReactNativeStarter-tvOS │ └── Info.plist ├── SimpleReactNativeStarter-tvOSTests │ └── Info.plist ├── SimpleReactNativeStarter.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── SimpleReactNativeStarter-tvOS.xcscheme │ │ └── SimpleReactNativeStarter.xcscheme ├── SimpleReactNativeStarter.xcworkspace │ └── contents.xcworkspacedata ├── SimpleReactNativeStarter │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ └── main.m └── SimpleReactNativeStarterTests │ ├── Info.plist │ └── SimpleReactNativeStarterTests.m ├── metro.config.js ├── package.json ├── src ├── App.tsx ├── Router.ts ├── api │ └── .keep ├── assets │ └── .keep ├── components │ └── common │ │ └── .keep ├── config │ └── .keep ├── containers │ └── .keep ├── context │ └── .keep ├── types │ └── .keep └── utils │ └── .keep ├── tsconfig.json └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/README.md -------------------------------------------------------------------------------- /android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/android/app/_BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/com/simplereactnativestarter/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/android/app/src/debug/java/com/simplereactnativestarter/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/simplereactnativestarter/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/android/app/src/main/java/com/simplereactnativestarter/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/simplereactnativestarter/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/android/app/src/main/java/com/simplereactnativestarter/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/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/pcofilada/simple-react-native-starter/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/pcofilada/simple-react-native-starter/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/pcofilada/simple-react-native-starter/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/pcofilada/simple-react-native-starter/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/pcofilada/simple-react-native-starter/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/pcofilada/simple-react-native-starter/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/pcofilada/simple-react-native-starter/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/pcofilada/simple-react-native-starter/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/pcofilada/simple-react-native-starter/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/index.js -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/SimpleReactNativeStarter-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/ios/SimpleReactNativeStarter-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/SimpleReactNativeStarter-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/ios/SimpleReactNativeStarter-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/SimpleReactNativeStarter.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/ios/SimpleReactNativeStarter.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/SimpleReactNativeStarter.xcodeproj/xcshareddata/xcschemes/SimpleReactNativeStarter-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/ios/SimpleReactNativeStarter.xcodeproj/xcshareddata/xcschemes/SimpleReactNativeStarter-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/SimpleReactNativeStarter.xcodeproj/xcshareddata/xcschemes/SimpleReactNativeStarter.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/ios/SimpleReactNativeStarter.xcodeproj/xcshareddata/xcschemes/SimpleReactNativeStarter.xcscheme -------------------------------------------------------------------------------- /ios/SimpleReactNativeStarter.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/ios/SimpleReactNativeStarter.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/SimpleReactNativeStarter/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/ios/SimpleReactNativeStarter/AppDelegate.h -------------------------------------------------------------------------------- /ios/SimpleReactNativeStarter/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/ios/SimpleReactNativeStarter/AppDelegate.m -------------------------------------------------------------------------------- /ios/SimpleReactNativeStarter/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/ios/SimpleReactNativeStarter/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/SimpleReactNativeStarter/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/ios/SimpleReactNativeStarter/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/SimpleReactNativeStarter/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/ios/SimpleReactNativeStarter/Info.plist -------------------------------------------------------------------------------- /ios/SimpleReactNativeStarter/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/ios/SimpleReactNativeStarter/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/SimpleReactNativeStarter/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/ios/SimpleReactNativeStarter/main.m -------------------------------------------------------------------------------- /ios/SimpleReactNativeStarterTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/ios/SimpleReactNativeStarterTests/Info.plist -------------------------------------------------------------------------------- /ios/SimpleReactNativeStarterTests/SimpleReactNativeStarterTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/ios/SimpleReactNativeStarterTests/SimpleReactNativeStarterTests.m -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/package.json -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/Router.ts: -------------------------------------------------------------------------------- 1 | export {}; -------------------------------------------------------------------------------- /src/api/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/common/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/config/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/containers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/context/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/types/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcofilada/simple-react-native-starter/HEAD/yarn.lock --------------------------------------------------------------------------------