├── .babelrc ├── .buckconfig ├── .eslintrc ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── README.md ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── AntDesign.ttf │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── Feather.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── FontAwesome5_Brands.ttf │ │ │ ├── FontAwesome5_Regular.ttf │ │ │ ├── FontAwesome5_Solid.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ └── Zocial.ttf │ │ ├── java │ │ └── com │ │ │ └── rnappstarter │ │ │ ├── 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 ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── app.json ├── environments ├── .env.development └── .env.production ├── index.js ├── ios ├── RNAppStarter-tvOS │ └── Info.plist ├── RNAppStarter-tvOSTests │ └── Info.plist ├── RNAppStarter.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── RNAppStarter (Development).xcscheme │ │ ├── RNAppStarter (Production).xcscheme │ │ └── RNAppStarter-tvOS.xcscheme ├── RNAppStarter │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── RNAppStarterTests │ ├── Info.plist │ └── RNAppStarterTests.m ├── package.json └── src ├── api ├── helper.js ├── index.js ├── package.json └── whitelistUrl.js ├── app.js ├── components └── navigator │ ├── app │ ├── AppNavigationService.js │ ├── AppNavigator.js │ └── index.js │ └── package.json ├── containers ├── Auth.js ├── Dashboard.js ├── Initial.js └── package.json ├── main.js ├── redux ├── actions │ ├── auth │ │ ├── index.js │ │ ├── signIn.js │ │ └── signOut.js │ ├── common │ │ ├── index.js │ │ └── rehydrate.js │ ├── index.js │ ├── package.json │ └── persist │ │ ├── index.js │ │ └── token.js ├── reducers │ ├── auth │ │ ├── index.js │ │ └── signIn.js │ ├── common │ │ ├── index.js │ │ └── rehydrate.js │ ├── index.js │ ├── package.json │ └── persist │ │ ├── index.js │ │ └── token.js ├── sagas │ ├── auth │ │ ├── index.js │ │ ├── signIn.js │ │ └── signOut.js │ ├── common │ │ ├── index.js │ │ └── rehydrate.js │ ├── index.js │ └── package.json ├── selectors │ ├── auth │ │ ├── index.js │ │ └── signIn.js │ ├── common │ │ ├── index.js │ │ └── rehydrate.js │ ├── index.js │ ├── package.json │ └── persist │ │ ├── index.js │ │ └── token.js └── store │ ├── configureStore.js │ └── package.json ├── themes ├── colors.js └── package.json └── utils ├── package.json └── size.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/.babelrc -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/.eslintrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/README.md -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/AntDesign.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/android/app/src/main/assets/fonts/AntDesign.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/rnappstarter/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/android/app/src/main/java/com/rnappstarter/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/rnappstarter/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/android/app/src/main/java/com/rnappstarter/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/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/kyaroru/RNAppStarter/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/kyaroru/RNAppStarter/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/kyaroru/RNAppStarter/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/kyaroru/RNAppStarter/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/kyaroru/RNAppStarter/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/kyaroru/RNAppStarter/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/kyaroru/RNAppStarter/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/kyaroru/RNAppStarter/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/kyaroru/RNAppStarter/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/app.json -------------------------------------------------------------------------------- /environments/.env.development: -------------------------------------------------------------------------------- 1 | SERVER_URL=http://localhost:3000/ 2 | ENVIRONMENT=development 3 | -------------------------------------------------------------------------------- /environments/.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/environments/.env.production -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/index.js -------------------------------------------------------------------------------- /ios/RNAppStarter-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/ios/RNAppStarter-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/RNAppStarter-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/ios/RNAppStarter-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/RNAppStarter.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/ios/RNAppStarter.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/RNAppStarter.xcodeproj/xcshareddata/xcschemes/RNAppStarter (Development).xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/ios/RNAppStarter.xcodeproj/xcshareddata/xcschemes/RNAppStarter (Development).xcscheme -------------------------------------------------------------------------------- /ios/RNAppStarter.xcodeproj/xcshareddata/xcschemes/RNAppStarter (Production).xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/ios/RNAppStarter.xcodeproj/xcshareddata/xcschemes/RNAppStarter (Production).xcscheme -------------------------------------------------------------------------------- /ios/RNAppStarter.xcodeproj/xcshareddata/xcschemes/RNAppStarter-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/ios/RNAppStarter.xcodeproj/xcshareddata/xcschemes/RNAppStarter-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/RNAppStarter/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/ios/RNAppStarter/AppDelegate.h -------------------------------------------------------------------------------- /ios/RNAppStarter/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/ios/RNAppStarter/AppDelegate.m -------------------------------------------------------------------------------- /ios/RNAppStarter/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/ios/RNAppStarter/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/RNAppStarter/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/ios/RNAppStarter/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/RNAppStarter/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/ios/RNAppStarter/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/RNAppStarter/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/ios/RNAppStarter/Info.plist -------------------------------------------------------------------------------- /ios/RNAppStarter/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/ios/RNAppStarter/main.m -------------------------------------------------------------------------------- /ios/RNAppStarterTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/ios/RNAppStarterTests/Info.plist -------------------------------------------------------------------------------- /ios/RNAppStarterTests/RNAppStarterTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/ios/RNAppStarterTests/RNAppStarterTests.m -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/package.json -------------------------------------------------------------------------------- /src/api/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/src/api/helper.js -------------------------------------------------------------------------------- /src/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/src/api/index.js -------------------------------------------------------------------------------- /src/api/package.json: -------------------------------------------------------------------------------- 1 | { "name": "api" } 2 | -------------------------------------------------------------------------------- /src/api/whitelistUrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/src/api/whitelistUrl.js -------------------------------------------------------------------------------- /src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/src/app.js -------------------------------------------------------------------------------- /src/components/navigator/app/AppNavigationService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/src/components/navigator/app/AppNavigationService.js -------------------------------------------------------------------------------- /src/components/navigator/app/AppNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/src/components/navigator/app/AppNavigator.js -------------------------------------------------------------------------------- /src/components/navigator/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/src/components/navigator/app/index.js -------------------------------------------------------------------------------- /src/components/navigator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/src/components/navigator/package.json -------------------------------------------------------------------------------- /src/containers/Auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/src/containers/Auth.js -------------------------------------------------------------------------------- /src/containers/Dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/src/containers/Dashboard.js -------------------------------------------------------------------------------- /src/containers/Initial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/src/containers/Initial.js -------------------------------------------------------------------------------- /src/containers/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "containers" 3 | } -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/src/main.js -------------------------------------------------------------------------------- /src/redux/actions/auth/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/src/redux/actions/auth/index.js -------------------------------------------------------------------------------- /src/redux/actions/auth/signIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/src/redux/actions/auth/signIn.js -------------------------------------------------------------------------------- /src/redux/actions/auth/signOut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/src/redux/actions/auth/signOut.js -------------------------------------------------------------------------------- /src/redux/actions/common/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/src/redux/actions/common/index.js -------------------------------------------------------------------------------- /src/redux/actions/common/rehydrate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/src/redux/actions/common/rehydrate.js -------------------------------------------------------------------------------- /src/redux/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/src/redux/actions/index.js -------------------------------------------------------------------------------- /src/redux/actions/package.json: -------------------------------------------------------------------------------- 1 | { "name": "actions" } -------------------------------------------------------------------------------- /src/redux/actions/persist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/src/redux/actions/persist/index.js -------------------------------------------------------------------------------- /src/redux/actions/persist/token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/src/redux/actions/persist/token.js -------------------------------------------------------------------------------- /src/redux/reducers/auth/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/src/redux/reducers/auth/index.js -------------------------------------------------------------------------------- /src/redux/reducers/auth/signIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/src/redux/reducers/auth/signIn.js -------------------------------------------------------------------------------- /src/redux/reducers/common/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/src/redux/reducers/common/index.js -------------------------------------------------------------------------------- /src/redux/reducers/common/rehydrate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/src/redux/reducers/common/rehydrate.js -------------------------------------------------------------------------------- /src/redux/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/src/redux/reducers/index.js -------------------------------------------------------------------------------- /src/redux/reducers/package.json: -------------------------------------------------------------------------------- 1 | { "name": "reducers" } -------------------------------------------------------------------------------- /src/redux/reducers/persist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/src/redux/reducers/persist/index.js -------------------------------------------------------------------------------- /src/redux/reducers/persist/token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/src/redux/reducers/persist/token.js -------------------------------------------------------------------------------- /src/redux/sagas/auth/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/src/redux/sagas/auth/index.js -------------------------------------------------------------------------------- /src/redux/sagas/auth/signIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/src/redux/sagas/auth/signIn.js -------------------------------------------------------------------------------- /src/redux/sagas/auth/signOut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/src/redux/sagas/auth/signOut.js -------------------------------------------------------------------------------- /src/redux/sagas/common/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/src/redux/sagas/common/index.js -------------------------------------------------------------------------------- /src/redux/sagas/common/rehydrate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/src/redux/sagas/common/rehydrate.js -------------------------------------------------------------------------------- /src/redux/sagas/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/src/redux/sagas/index.js -------------------------------------------------------------------------------- /src/redux/sagas/package.json: -------------------------------------------------------------------------------- 1 | { "name": "sagas" } -------------------------------------------------------------------------------- /src/redux/selectors/auth/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/src/redux/selectors/auth/index.js -------------------------------------------------------------------------------- /src/redux/selectors/auth/signIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/src/redux/selectors/auth/signIn.js -------------------------------------------------------------------------------- /src/redux/selectors/common/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/src/redux/selectors/common/index.js -------------------------------------------------------------------------------- /src/redux/selectors/common/rehydrate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/src/redux/selectors/common/rehydrate.js -------------------------------------------------------------------------------- /src/redux/selectors/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/src/redux/selectors/index.js -------------------------------------------------------------------------------- /src/redux/selectors/package.json: -------------------------------------------------------------------------------- 1 | { "name": "selectors" } -------------------------------------------------------------------------------- /src/redux/selectors/persist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/src/redux/selectors/persist/index.js -------------------------------------------------------------------------------- /src/redux/selectors/persist/token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/src/redux/selectors/persist/token.js -------------------------------------------------------------------------------- /src/redux/store/configureStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/src/redux/store/configureStore.js -------------------------------------------------------------------------------- /src/redux/store/package.json: -------------------------------------------------------------------------------- 1 | { "name": "store" } -------------------------------------------------------------------------------- /src/themes/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/src/themes/colors.js -------------------------------------------------------------------------------- /src/themes/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "themes" 3 | } -------------------------------------------------------------------------------- /src/utils/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "utils" 3 | } -------------------------------------------------------------------------------- /src/utils/size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyaroru/RNAppStarter/HEAD/src/utils/size.js --------------------------------------------------------------------------------