├── .add-pre-commit-hook ├── .babelrc ├── .buckconfig ├── .eslintignore ├── .eslintrc ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .pre-commit ├── .watchmanconfig ├── ChangeLog.md ├── LICENSE ├── README.md ├── Screenshots ├── android │ ├── blankPage.png │ ├── demo.gif │ ├── drawer.png │ ├── home.png │ ├── login-1.png │ └── login-2.png ├── iOS │ ├── blankPage.png │ ├── demo.gif │ ├── drawer.png │ ├── home.png │ ├── login-1.png │ └── login-2.png └── logo.png ├── __tests__ ├── index.android.js └── index.ios.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── Andale Mono.ttf │ │ │ ├── Arial Black.ttf │ │ │ ├── Arial.ttf │ │ │ ├── Comic Sans MS.ttf │ │ │ ├── Courier New.ttf │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Georgia.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Microsoft Sans Serif.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── Roboto.ttf │ │ │ ├── Roboto_medium.ttf │ │ │ ├── Rubik-Black.ttf │ │ │ ├── Rubik-BlackItalic.ttf │ │ │ ├── Rubik-Bold.ttf │ │ │ ├── Rubik-BoldItalic.ttf │ │ │ ├── Rubik-Italic.ttf │ │ │ ├── Rubik-Light.ttf │ │ │ ├── Rubik-LightItalic.ttf │ │ │ ├── Rubik-Medium.ttf │ │ │ ├── Rubik-MediumItalic.ttf │ │ │ ├── Rubik-Regular.ttf │ │ │ ├── SF-UI-Text-Regular.otf │ │ │ ├── SanFrancisco.ttf │ │ │ ├── SanFranciscoBold.ttf │ │ │ ├── SanFranciscoThin.ttf │ │ │ ├── Skia.ttf │ │ │ ├── Times New Roman.ttf │ │ │ ├── Zocial.ttf │ │ │ └── rubicon-icon-font.ttf │ │ ├── java │ │ └── com │ │ │ └── nativestarterkit │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.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 ├── images └── shadow.png ├── index.android.js ├── index.ios.js ├── ios ├── NativeStarterKit-tvOS │ └── Info.plist ├── NativeStarterKit-tvOSTests │ └── Info.plist ├── NativeStarterKit.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── NativeStarterKit-tvOS.xcscheme │ │ └── NativeStarterKit.xcscheme ├── NativeStarterKit │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── NativeStarterKitTests │ ├── Info.plist │ └── NativeStarterKitTests.m ├── js ├── App.js ├── Routers │ ├── HomeDrawerRouter.js │ └── MainStackRouter.js ├── actions │ ├── drawer.js │ ├── list.js │ ├── sideBarNav.js │ ├── types.js │ └── user.js ├── components │ ├── DrawBar │ │ └── index.js │ ├── blankPage │ │ ├── index.js │ │ └── styles.js │ ├── blankPage2 │ │ └── index.js │ ├── home │ │ ├── index.js │ │ └── styles.js │ ├── loaders │ │ ├── ProgressBar.android.js │ │ ├── ProgressBar.ios.js │ │ └── Spinner.js │ └── login │ │ ├── index.js │ │ └── styles.js ├── configureStore.js ├── promise.js ├── reducers │ ├── drawer.js │ ├── index.js │ ├── list.js │ └── user.js ├── setup.js └── themes │ └── base-theme.js ├── native-base-theme ├── components │ ├── Badge.js │ ├── Button.js │ ├── Card.js │ ├── CardItem.js │ ├── CheckBox.js │ ├── Container.js │ ├── Content.js │ ├── Fab.js │ ├── Footer.js │ ├── FooterTab.js │ ├── Form.js │ ├── H1.js │ ├── H2.js │ ├── H3.js │ ├── Header.js │ ├── Icon.js │ ├── Input.js │ ├── InputGroup.js │ ├── Item.js │ ├── Label.js │ ├── ListItem.js │ ├── Picker.android.js │ ├── Picker.ios.js │ ├── Radio.js │ ├── Segment.js │ ├── Separator.js │ ├── Spinner.js │ ├── Tab.js │ ├── TabBar.js │ ├── TabContainer.js │ ├── TabHeading.js │ ├── Text.js │ ├── Textarea.js │ ├── Title.js │ ├── Toast.js │ ├── View.js │ └── index.js └── variables │ ├── commonColor.js │ ├── material.js │ └── platform.js ├── package.json └── yarn.lock /.add-pre-commit-hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/.add-pre-commit-hook -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/.eslintrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/.pre-commit -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/android/blankPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/Screenshots/android/blankPage.png -------------------------------------------------------------------------------- /Screenshots/android/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/Screenshots/android/demo.gif -------------------------------------------------------------------------------- /Screenshots/android/drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/Screenshots/android/drawer.png -------------------------------------------------------------------------------- /Screenshots/android/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/Screenshots/android/home.png -------------------------------------------------------------------------------- /Screenshots/android/login-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/Screenshots/android/login-1.png -------------------------------------------------------------------------------- /Screenshots/android/login-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/Screenshots/android/login-2.png -------------------------------------------------------------------------------- /Screenshots/iOS/blankPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/Screenshots/iOS/blankPage.png -------------------------------------------------------------------------------- /Screenshots/iOS/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/Screenshots/iOS/demo.gif -------------------------------------------------------------------------------- /Screenshots/iOS/drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/Screenshots/iOS/drawer.png -------------------------------------------------------------------------------- /Screenshots/iOS/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/Screenshots/iOS/home.png -------------------------------------------------------------------------------- /Screenshots/iOS/login-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/Screenshots/iOS/login-1.png -------------------------------------------------------------------------------- /Screenshots/iOS/login-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/Screenshots/iOS/login-2.png -------------------------------------------------------------------------------- /Screenshots/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/Screenshots/logo.png -------------------------------------------------------------------------------- /__tests__/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/__tests__/index.android.js -------------------------------------------------------------------------------- /__tests__/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/__tests__/index.ios.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Andale Mono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/src/main/assets/fonts/Andale Mono.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Arial Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/src/main/assets/fonts/Arial Black.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/src/main/assets/fonts/Arial.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Comic Sans MS.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/src/main/assets/fonts/Comic Sans MS.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Courier New.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/src/main/assets/fonts/Courier New.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Georgia.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/src/main/assets/fonts/Georgia.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Microsoft Sans Serif.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/src/main/assets/fonts/Microsoft Sans Serif.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/src/main/assets/fonts/Roboto.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/src/main/assets/fonts/Roboto_medium.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Rubik-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/src/main/assets/fonts/Rubik-Black.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Rubik-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/src/main/assets/fonts/Rubik-BlackItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Rubik-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/src/main/assets/fonts/Rubik-Bold.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Rubik-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/src/main/assets/fonts/Rubik-BoldItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Rubik-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/src/main/assets/fonts/Rubik-Italic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Rubik-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/src/main/assets/fonts/Rubik-Light.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Rubik-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/src/main/assets/fonts/Rubik-LightItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Rubik-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/src/main/assets/fonts/Rubik-Medium.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Rubik-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/src/main/assets/fonts/Rubik-MediumItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Rubik-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/src/main/assets/fonts/Rubik-Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SF-UI-Text-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/src/main/assets/fonts/SF-UI-Text-Regular.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SanFrancisco.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/src/main/assets/fonts/SanFrancisco.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SanFranciscoBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/src/main/assets/fonts/SanFranciscoBold.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SanFranciscoThin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/src/main/assets/fonts/SanFranciscoThin.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Skia.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/src/main/assets/fonts/Skia.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Times New Roman.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/src/main/assets/fonts/Times New Roman.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/rubicon-icon-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/src/main/assets/fonts/rubicon-icon-font.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/nativestarterkit/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/src/main/java/com/nativestarterkit/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/nativestarterkit/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/src/main/java/com/nativestarterkit/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/app.json -------------------------------------------------------------------------------- /images/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/images/shadow.png -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/index.android.js -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/index.ios.js -------------------------------------------------------------------------------- /ios/NativeStarterKit-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/ios/NativeStarterKit-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/NativeStarterKit-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/ios/NativeStarterKit-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/NativeStarterKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/ios/NativeStarterKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/NativeStarterKit.xcodeproj/xcshareddata/xcschemes/NativeStarterKit-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/ios/NativeStarterKit.xcodeproj/xcshareddata/xcschemes/NativeStarterKit-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/NativeStarterKit.xcodeproj/xcshareddata/xcschemes/NativeStarterKit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/ios/NativeStarterKit.xcodeproj/xcshareddata/xcschemes/NativeStarterKit.xcscheme -------------------------------------------------------------------------------- /ios/NativeStarterKit/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/ios/NativeStarterKit/AppDelegate.h -------------------------------------------------------------------------------- /ios/NativeStarterKit/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/ios/NativeStarterKit/AppDelegate.m -------------------------------------------------------------------------------- /ios/NativeStarterKit/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/ios/NativeStarterKit/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/NativeStarterKit/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/ios/NativeStarterKit/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/NativeStarterKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/ios/NativeStarterKit/Info.plist -------------------------------------------------------------------------------- /ios/NativeStarterKit/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/ios/NativeStarterKit/main.m -------------------------------------------------------------------------------- /ios/NativeStarterKitTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/ios/NativeStarterKitTests/Info.plist -------------------------------------------------------------------------------- /ios/NativeStarterKitTests/NativeStarterKitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/ios/NativeStarterKitTests/NativeStarterKitTests.m -------------------------------------------------------------------------------- /js/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/js/App.js -------------------------------------------------------------------------------- /js/Routers/HomeDrawerRouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/js/Routers/HomeDrawerRouter.js -------------------------------------------------------------------------------- /js/Routers/MainStackRouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/js/Routers/MainStackRouter.js -------------------------------------------------------------------------------- /js/actions/drawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/js/actions/drawer.js -------------------------------------------------------------------------------- /js/actions/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/js/actions/list.js -------------------------------------------------------------------------------- /js/actions/sideBarNav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/js/actions/sideBarNav.js -------------------------------------------------------------------------------- /js/actions/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/js/actions/types.js -------------------------------------------------------------------------------- /js/actions/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/js/actions/user.js -------------------------------------------------------------------------------- /js/components/DrawBar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/js/components/DrawBar/index.js -------------------------------------------------------------------------------- /js/components/blankPage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/js/components/blankPage/index.js -------------------------------------------------------------------------------- /js/components/blankPage/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/js/components/blankPage/styles.js -------------------------------------------------------------------------------- /js/components/blankPage2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/js/components/blankPage2/index.js -------------------------------------------------------------------------------- /js/components/home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/js/components/home/index.js -------------------------------------------------------------------------------- /js/components/home/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/js/components/home/styles.js -------------------------------------------------------------------------------- /js/components/loaders/ProgressBar.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/js/components/loaders/ProgressBar.android.js -------------------------------------------------------------------------------- /js/components/loaders/ProgressBar.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/js/components/loaders/ProgressBar.ios.js -------------------------------------------------------------------------------- /js/components/loaders/Spinner.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /js/components/login/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/js/components/login/index.js -------------------------------------------------------------------------------- /js/components/login/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/js/components/login/styles.js -------------------------------------------------------------------------------- /js/configureStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/js/configureStore.js -------------------------------------------------------------------------------- /js/promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/js/promise.js -------------------------------------------------------------------------------- /js/reducers/drawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/js/reducers/drawer.js -------------------------------------------------------------------------------- /js/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/js/reducers/index.js -------------------------------------------------------------------------------- /js/reducers/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/js/reducers/list.js -------------------------------------------------------------------------------- /js/reducers/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/js/reducers/user.js -------------------------------------------------------------------------------- /js/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/js/setup.js -------------------------------------------------------------------------------- /js/themes/base-theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/js/themes/base-theme.js -------------------------------------------------------------------------------- /native-base-theme/components/Badge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/native-base-theme/components/Badge.js -------------------------------------------------------------------------------- /native-base-theme/components/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/native-base-theme/components/Button.js -------------------------------------------------------------------------------- /native-base-theme/components/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/native-base-theme/components/Card.js -------------------------------------------------------------------------------- /native-base-theme/components/CardItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/native-base-theme/components/CardItem.js -------------------------------------------------------------------------------- /native-base-theme/components/CheckBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/native-base-theme/components/CheckBox.js -------------------------------------------------------------------------------- /native-base-theme/components/Container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/native-base-theme/components/Container.js -------------------------------------------------------------------------------- /native-base-theme/components/Content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/native-base-theme/components/Content.js -------------------------------------------------------------------------------- /native-base-theme/components/Fab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/native-base-theme/components/Fab.js -------------------------------------------------------------------------------- /native-base-theme/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/native-base-theme/components/Footer.js -------------------------------------------------------------------------------- /native-base-theme/components/FooterTab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/native-base-theme/components/FooterTab.js -------------------------------------------------------------------------------- /native-base-theme/components/Form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/native-base-theme/components/Form.js -------------------------------------------------------------------------------- /native-base-theme/components/H1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/native-base-theme/components/H1.js -------------------------------------------------------------------------------- /native-base-theme/components/H2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/native-base-theme/components/H2.js -------------------------------------------------------------------------------- /native-base-theme/components/H3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/native-base-theme/components/H3.js -------------------------------------------------------------------------------- /native-base-theme/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/native-base-theme/components/Header.js -------------------------------------------------------------------------------- /native-base-theme/components/Icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/native-base-theme/components/Icon.js -------------------------------------------------------------------------------- /native-base-theme/components/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/native-base-theme/components/Input.js -------------------------------------------------------------------------------- /native-base-theme/components/InputGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/native-base-theme/components/InputGroup.js -------------------------------------------------------------------------------- /native-base-theme/components/Item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/native-base-theme/components/Item.js -------------------------------------------------------------------------------- /native-base-theme/components/Label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/native-base-theme/components/Label.js -------------------------------------------------------------------------------- /native-base-theme/components/ListItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/native-base-theme/components/ListItem.js -------------------------------------------------------------------------------- /native-base-theme/components/Picker.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/native-base-theme/components/Picker.android.js -------------------------------------------------------------------------------- /native-base-theme/components/Picker.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/native-base-theme/components/Picker.ios.js -------------------------------------------------------------------------------- /native-base-theme/components/Radio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/native-base-theme/components/Radio.js -------------------------------------------------------------------------------- /native-base-theme/components/Segment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/native-base-theme/components/Segment.js -------------------------------------------------------------------------------- /native-base-theme/components/Separator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/native-base-theme/components/Separator.js -------------------------------------------------------------------------------- /native-base-theme/components/Spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/native-base-theme/components/Spinner.js -------------------------------------------------------------------------------- /native-base-theme/components/Tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/native-base-theme/components/Tab.js -------------------------------------------------------------------------------- /native-base-theme/components/TabBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/native-base-theme/components/TabBar.js -------------------------------------------------------------------------------- /native-base-theme/components/TabContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/native-base-theme/components/TabContainer.js -------------------------------------------------------------------------------- /native-base-theme/components/TabHeading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/native-base-theme/components/TabHeading.js -------------------------------------------------------------------------------- /native-base-theme/components/Text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/native-base-theme/components/Text.js -------------------------------------------------------------------------------- /native-base-theme/components/Textarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/native-base-theme/components/Textarea.js -------------------------------------------------------------------------------- /native-base-theme/components/Title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/native-base-theme/components/Title.js -------------------------------------------------------------------------------- /native-base-theme/components/Toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/native-base-theme/components/Toast.js -------------------------------------------------------------------------------- /native-base-theme/components/View.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/native-base-theme/components/View.js -------------------------------------------------------------------------------- /native-base-theme/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/native-base-theme/components/index.js -------------------------------------------------------------------------------- /native-base-theme/variables/commonColor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/native-base-theme/variables/commonColor.js -------------------------------------------------------------------------------- /native-base-theme/variables/material.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/native-base-theme/variables/material.js -------------------------------------------------------------------------------- /native-base-theme/variables/platform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/native-base-theme/variables/platform.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start-react/native-starter-kit/HEAD/yarn.lock --------------------------------------------------------------------------------