├── .buckconfig ├── .editorconfig ├── .env.example ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── LICENSE ├── README.md ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── reactnativeboilerplate │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── drawable │ │ ├── bootsplash.xml │ │ └── screen.png │ │ ├── layout │ │ └── bootsplash.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── react_logo.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── react_logo.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── react_logo.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── react_logo.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── react_logo.png │ │ └── values │ │ ├── colors.xml │ │ ├── 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 ├── global.d.ts ├── index.js ├── ios ├── Podfile ├── Podfile.lock ├── ReactNativeBoilerplate-tvOS │ └── Info.plist ├── ReactNativeBoilerplate-tvOSTests │ └── Info.plist ├── ReactNativeBoilerplate.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── ReactNativeBoilerplate-tvOS.xcscheme │ │ └── ReactNativeBoilerplate.xcscheme ├── ReactNativeBoilerplate.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── ReactNativeBoilerplate │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-1024.png │ │ │ ├── Icon-20@2x.png │ │ │ ├── Icon-20@3x.png │ │ │ ├── Icon-29@2x.png │ │ │ ├── Icon-29@3x.png │ │ │ ├── Icon-40@2x.png │ │ │ ├── Icon-40@3x.png │ │ │ ├── Icon-60@2x.png │ │ │ └── Icon-60@3x.png │ │ ├── Contents.json │ │ └── mipmap-hdpi │ │ │ ├── Contents.json │ │ │ ├── ic_launcher.imageset │ │ │ ├── Contents.json │ │ │ └── ic_launcher.png │ │ │ ├── ic_launcher_round.imageset │ │ │ ├── Contents.json │ │ │ └── ic_launcher_round.png │ │ │ └── react_logo.imageset │ │ │ ├── Contents.json │ │ │ └── react_logo.png │ ├── Info.plist │ └── main.m └── ReactNativeBoilerplateTests │ ├── Info.plist │ └── ReactNativeBoilerplateTests.m ├── jest.config.js ├── metro.config.js ├── package.json ├── pankod_cover.jpg ├── scenes ├── Apod │ ├── __snapshots__ │ │ └── index.spec.tsx.snap │ ├── index.spec.tsx │ ├── index.tsx │ └── styled.ts └── Home │ ├── __snapshots__ │ └── index.spec.tsx.snap │ ├── index.spec.tsx │ ├── index.tsx │ └── styled.ts ├── src ├── Actions │ ├── HomeActions │ │ ├── index.spec.tsx │ │ └── index.ts │ └── index.ts ├── App.tsx ├── Components │ ├── Heading │ │ ├── Heading.d.ts │ │ ├── __snapshots__ │ │ │ └── index.spec.tsx.snap │ │ ├── index.spec.tsx │ │ ├── index.tsx │ │ └── styled.ts │ └── index.ts ├── Definitions │ ├── ActionConsts │ │ ├── index.spec.ts │ │ └── index.ts │ ├── Styled │ │ ├── index.ts │ │ └── theme.ts │ └── index.ts ├── I18n │ ├── index.ts │ └── locales │ │ ├── en │ │ ├── common.json │ │ ├── home.json │ │ └── index.ts │ │ ├── es │ │ ├── common.json │ │ ├── home.json │ │ └── index.ts │ │ ├── index.ts │ │ └── tr │ │ ├── common.json │ │ ├── home.json │ │ └── index.ts ├── Interfaces │ ├── Scenes │ │ └── Home.d.ts │ ├── index.ts │ └── styled.d.ts ├── Redux │ ├── IAction.d.ts │ ├── IStore.d.ts │ ├── Reducers │ │ ├── home │ │ │ ├── index.spec.ts │ │ │ └── index.ts │ │ └── index.ts │ ├── index.ts │ └── store.ts ├── Router │ └── index.tsx ├── Services │ ├── API │ │ ├── Http │ │ │ ├── Http.d.ts │ │ │ ├── index.spec.ts │ │ │ └── index.ts │ │ └── Planetary │ │ │ ├── ApodPayload.d.ts │ │ │ ├── ApodResponse.d.ts │ │ │ ├── Planetary.d.ts │ │ │ ├── index.spec.ts │ │ │ └── index.ts │ ├── RouterActions.tsx │ └── index.ts └── Styled │ └── index.tsx ├── static └── images │ └── pankod-logo.png ├── test ├── Helpers │ └── render.tsx ├── jest.setup.ts ├── mocks.ts └── tsconfig.jest.json ├── tsconfig.json └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/.buckconfig -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | API_URL=https://api.nasa.gov 2 | API_KEY=NNKOjkoul8n1CH18TWA9gwngW1s1SmjESPjNoUFo 3 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/reactnativeboilerplate/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/android/app/src/main/java/com/reactnativeboilerplate/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/reactnativeboilerplate/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/android/app/src/main/java/com/reactnativeboilerplate/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/bootsplash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/android/app/src/main/res/drawable/bootsplash.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/android/app/src/main/res/drawable/screen.png -------------------------------------------------------------------------------- /android/app/src/main/res/layout/bootsplash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/android/app/src/main/res/layout/bootsplash.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/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/pankod/react-native-boilerplate/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/react_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/android/app/src/main/res/mipmap-hdpi/react_logo.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/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/pankod/react-native-boilerplate/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/react_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/android/app/src/main/res/mipmap-mdpi/react_logo.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/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/pankod/react-native-boilerplate/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/react_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/android/app/src/main/res/mipmap-xhdpi/react_logo.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/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/pankod/react-native-boilerplate/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/react_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/android/app/src/main/res/mipmap-xxhdpi/react_logo.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/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/pankod/react-native-boilerplate/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/react_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/android/app/src/main/res/mipmap-xxxhdpi/react_logo.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/babel.config.js -------------------------------------------------------------------------------- /global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/global.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/index.js -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/ReactNativeBoilerplate-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/ios/ReactNativeBoilerplate-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/ReactNativeBoilerplate-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/ios/ReactNativeBoilerplate-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/ReactNativeBoilerplate.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/ios/ReactNativeBoilerplate.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/ReactNativeBoilerplate.xcodeproj/xcshareddata/xcschemes/ReactNativeBoilerplate-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/ios/ReactNativeBoilerplate.xcodeproj/xcshareddata/xcschemes/ReactNativeBoilerplate-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/ReactNativeBoilerplate.xcodeproj/xcshareddata/xcschemes/ReactNativeBoilerplate.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/ios/ReactNativeBoilerplate.xcodeproj/xcshareddata/xcschemes/ReactNativeBoilerplate.xcscheme -------------------------------------------------------------------------------- /ios/ReactNativeBoilerplate.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/ios/ReactNativeBoilerplate.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/ReactNativeBoilerplate.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/ios/ReactNativeBoilerplate.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/ReactNativeBoilerplate/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/ios/ReactNativeBoilerplate/AppDelegate.h -------------------------------------------------------------------------------- /ios/ReactNativeBoilerplate/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/ios/ReactNativeBoilerplate/AppDelegate.m -------------------------------------------------------------------------------- /ios/ReactNativeBoilerplate/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/ios/ReactNativeBoilerplate/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/ReactNativeBoilerplate/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/ios/ReactNativeBoilerplate/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/ReactNativeBoilerplate/Images.xcassets/AppIcon.appiconset/Icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/ios/ReactNativeBoilerplate/Images.xcassets/AppIcon.appiconset/Icon-1024.png -------------------------------------------------------------------------------- /ios/ReactNativeBoilerplate/Images.xcassets/AppIcon.appiconset/Icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/ios/ReactNativeBoilerplate/Images.xcassets/AppIcon.appiconset/Icon-20@2x.png -------------------------------------------------------------------------------- /ios/ReactNativeBoilerplate/Images.xcassets/AppIcon.appiconset/Icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/ios/ReactNativeBoilerplate/Images.xcassets/AppIcon.appiconset/Icon-20@3x.png -------------------------------------------------------------------------------- /ios/ReactNativeBoilerplate/Images.xcassets/AppIcon.appiconset/Icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/ios/ReactNativeBoilerplate/Images.xcassets/AppIcon.appiconset/Icon-29@2x.png -------------------------------------------------------------------------------- /ios/ReactNativeBoilerplate/Images.xcassets/AppIcon.appiconset/Icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/ios/ReactNativeBoilerplate/Images.xcassets/AppIcon.appiconset/Icon-29@3x.png -------------------------------------------------------------------------------- /ios/ReactNativeBoilerplate/Images.xcassets/AppIcon.appiconset/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/ios/ReactNativeBoilerplate/Images.xcassets/AppIcon.appiconset/Icon-40@2x.png -------------------------------------------------------------------------------- /ios/ReactNativeBoilerplate/Images.xcassets/AppIcon.appiconset/Icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/ios/ReactNativeBoilerplate/Images.xcassets/AppIcon.appiconset/Icon-40@3x.png -------------------------------------------------------------------------------- /ios/ReactNativeBoilerplate/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/ios/ReactNativeBoilerplate/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /ios/ReactNativeBoilerplate/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/ios/ReactNativeBoilerplate/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /ios/ReactNativeBoilerplate/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/ios/ReactNativeBoilerplate/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/ReactNativeBoilerplate/Images.xcassets/mipmap-hdpi/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/ios/ReactNativeBoilerplate/Images.xcassets/mipmap-hdpi/Contents.json -------------------------------------------------------------------------------- /ios/ReactNativeBoilerplate/Images.xcassets/mipmap-hdpi/ic_launcher.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/ios/ReactNativeBoilerplate/Images.xcassets/mipmap-hdpi/ic_launcher.imageset/Contents.json -------------------------------------------------------------------------------- /ios/ReactNativeBoilerplate/Images.xcassets/mipmap-hdpi/ic_launcher.imageset/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/ios/ReactNativeBoilerplate/Images.xcassets/mipmap-hdpi/ic_launcher.imageset/ic_launcher.png -------------------------------------------------------------------------------- /ios/ReactNativeBoilerplate/Images.xcassets/mipmap-hdpi/ic_launcher_round.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/ios/ReactNativeBoilerplate/Images.xcassets/mipmap-hdpi/ic_launcher_round.imageset/Contents.json -------------------------------------------------------------------------------- /ios/ReactNativeBoilerplate/Images.xcassets/mipmap-hdpi/ic_launcher_round.imageset/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/ios/ReactNativeBoilerplate/Images.xcassets/mipmap-hdpi/ic_launcher_round.imageset/ic_launcher_round.png -------------------------------------------------------------------------------- /ios/ReactNativeBoilerplate/Images.xcassets/mipmap-hdpi/react_logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/ios/ReactNativeBoilerplate/Images.xcassets/mipmap-hdpi/react_logo.imageset/Contents.json -------------------------------------------------------------------------------- /ios/ReactNativeBoilerplate/Images.xcassets/mipmap-hdpi/react_logo.imageset/react_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/ios/ReactNativeBoilerplate/Images.xcassets/mipmap-hdpi/react_logo.imageset/react_logo.png -------------------------------------------------------------------------------- /ios/ReactNativeBoilerplate/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/ios/ReactNativeBoilerplate/Info.plist -------------------------------------------------------------------------------- /ios/ReactNativeBoilerplate/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/ios/ReactNativeBoilerplate/main.m -------------------------------------------------------------------------------- /ios/ReactNativeBoilerplateTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/ios/ReactNativeBoilerplateTests/Info.plist -------------------------------------------------------------------------------- /ios/ReactNativeBoilerplateTests/ReactNativeBoilerplateTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/ios/ReactNativeBoilerplateTests/ReactNativeBoilerplateTests.m -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/jest.config.js -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /pankod_cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/pankod_cover.jpg -------------------------------------------------------------------------------- /scenes/Apod/__snapshots__/index.spec.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/scenes/Apod/__snapshots__/index.spec.tsx.snap -------------------------------------------------------------------------------- /scenes/Apod/index.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/scenes/Apod/index.spec.tsx -------------------------------------------------------------------------------- /scenes/Apod/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/scenes/Apod/index.tsx -------------------------------------------------------------------------------- /scenes/Apod/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/scenes/Apod/styled.ts -------------------------------------------------------------------------------- /scenes/Home/__snapshots__/index.spec.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/scenes/Home/__snapshots__/index.spec.tsx.snap -------------------------------------------------------------------------------- /scenes/Home/index.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/scenes/Home/index.spec.tsx -------------------------------------------------------------------------------- /scenes/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/scenes/Home/index.tsx -------------------------------------------------------------------------------- /scenes/Home/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/scenes/Home/styled.ts -------------------------------------------------------------------------------- /src/Actions/HomeActions/index.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/src/Actions/HomeActions/index.spec.tsx -------------------------------------------------------------------------------- /src/Actions/HomeActions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/src/Actions/HomeActions/index.ts -------------------------------------------------------------------------------- /src/Actions/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./HomeActions"; 2 | -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/Components/Heading/Heading.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/src/Components/Heading/Heading.d.ts -------------------------------------------------------------------------------- /src/Components/Heading/__snapshots__/index.spec.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/src/Components/Heading/__snapshots__/index.spec.tsx.snap -------------------------------------------------------------------------------- /src/Components/Heading/index.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/src/Components/Heading/index.spec.tsx -------------------------------------------------------------------------------- /src/Components/Heading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/src/Components/Heading/index.tsx -------------------------------------------------------------------------------- /src/Components/Heading/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/src/Components/Heading/styled.ts -------------------------------------------------------------------------------- /src/Components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/src/Components/index.ts -------------------------------------------------------------------------------- /src/Definitions/ActionConsts/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/src/Definitions/ActionConsts/index.spec.ts -------------------------------------------------------------------------------- /src/Definitions/ActionConsts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/src/Definitions/ActionConsts/index.ts -------------------------------------------------------------------------------- /src/Definitions/Styled/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./theme"; 2 | -------------------------------------------------------------------------------- /src/Definitions/Styled/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/src/Definitions/Styled/theme.ts -------------------------------------------------------------------------------- /src/Definitions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/src/Definitions/index.ts -------------------------------------------------------------------------------- /src/I18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/src/I18n/index.ts -------------------------------------------------------------------------------- /src/I18n/locales/en/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/src/I18n/locales/en/common.json -------------------------------------------------------------------------------- /src/I18n/locales/en/home.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/src/I18n/locales/en/home.json -------------------------------------------------------------------------------- /src/I18n/locales/en/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/src/I18n/locales/en/index.ts -------------------------------------------------------------------------------- /src/I18n/locales/es/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/src/I18n/locales/es/common.json -------------------------------------------------------------------------------- /src/I18n/locales/es/home.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/src/I18n/locales/es/home.json -------------------------------------------------------------------------------- /src/I18n/locales/es/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/src/I18n/locales/es/index.ts -------------------------------------------------------------------------------- /src/I18n/locales/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/src/I18n/locales/index.ts -------------------------------------------------------------------------------- /src/I18n/locales/tr/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/src/I18n/locales/tr/common.json -------------------------------------------------------------------------------- /src/I18n/locales/tr/home.json: -------------------------------------------------------------------------------- 1 | { 2 | "Space": "Uzayı Keşfet" 3 | } 4 | -------------------------------------------------------------------------------- /src/I18n/locales/tr/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/src/I18n/locales/tr/index.ts -------------------------------------------------------------------------------- /src/Interfaces/Scenes/Home.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/src/Interfaces/Scenes/Home.d.ts -------------------------------------------------------------------------------- /src/Interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/src/Interfaces/index.ts -------------------------------------------------------------------------------- /src/Interfaces/styled.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/src/Interfaces/styled.d.ts -------------------------------------------------------------------------------- /src/Redux/IAction.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/src/Redux/IAction.d.ts -------------------------------------------------------------------------------- /src/Redux/IStore.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/src/Redux/IStore.d.ts -------------------------------------------------------------------------------- /src/Redux/Reducers/home/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/src/Redux/Reducers/home/index.spec.ts -------------------------------------------------------------------------------- /src/Redux/Reducers/home/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/src/Redux/Reducers/home/index.ts -------------------------------------------------------------------------------- /src/Redux/Reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/src/Redux/Reducers/index.ts -------------------------------------------------------------------------------- /src/Redux/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./store"; 2 | -------------------------------------------------------------------------------- /src/Redux/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/src/Redux/store.ts -------------------------------------------------------------------------------- /src/Router/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/src/Router/index.tsx -------------------------------------------------------------------------------- /src/Services/API/Http/Http.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/src/Services/API/Http/Http.d.ts -------------------------------------------------------------------------------- /src/Services/API/Http/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/src/Services/API/Http/index.spec.ts -------------------------------------------------------------------------------- /src/Services/API/Http/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/src/Services/API/Http/index.ts -------------------------------------------------------------------------------- /src/Services/API/Planetary/ApodPayload.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/src/Services/API/Planetary/ApodPayload.d.ts -------------------------------------------------------------------------------- /src/Services/API/Planetary/ApodResponse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/src/Services/API/Planetary/ApodResponse.d.ts -------------------------------------------------------------------------------- /src/Services/API/Planetary/Planetary.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/src/Services/API/Planetary/Planetary.d.ts -------------------------------------------------------------------------------- /src/Services/API/Planetary/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/src/Services/API/Planetary/index.spec.ts -------------------------------------------------------------------------------- /src/Services/API/Planetary/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/src/Services/API/Planetary/index.ts -------------------------------------------------------------------------------- /src/Services/RouterActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/src/Services/RouterActions.tsx -------------------------------------------------------------------------------- /src/Services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/src/Services/index.ts -------------------------------------------------------------------------------- /src/Styled/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/src/Styled/index.tsx -------------------------------------------------------------------------------- /static/images/pankod-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/static/images/pankod-logo.png -------------------------------------------------------------------------------- /test/Helpers/render.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/test/Helpers/render.tsx -------------------------------------------------------------------------------- /test/jest.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/test/jest.setup.ts -------------------------------------------------------------------------------- /test/mocks.ts: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /test/tsconfig.jest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/test/tsconfig.jest.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pankod/react-native-boilerplate/HEAD/yarn.lock --------------------------------------------------------------------------------