├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── LICENSE ├── README.md ├── __tests__ └── App.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── Feather.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── Roboto.ttf │ │ │ ├── Roboto_medium.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ ├── Zocial.ttf │ │ │ ├── icomoon.ttf │ │ │ └── rubicon-icon-font.ttf │ │ ├── java │ │ └── com │ │ │ └── starterkit │ │ │ ├── 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 ├── design └── splash and icon.sketch ├── index.js ├── ios ├── starterkit-tvOS │ └── Info.plist ├── starterkit-tvOSTests │ └── Info.plist ├── starterkit.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── starterkit-tvOS.xcscheme │ │ └── starterkit.xcscheme ├── starterkit │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── starterkitTests │ ├── Info.plist │ └── starterkitTests.m ├── package.json ├── src ├── App.js ├── assets │ ├── fonts │ │ └── icomoon.ttf │ └── images │ │ ├── avatar.png │ │ └── index.js ├── components │ ├── AfterInteractions │ │ └── index.js │ ├── Browser │ │ ├── index.js │ │ └── styles.js │ ├── ConnectionStatusBar │ │ ├── index.js │ │ └── styles.js │ ├── Footer │ │ ├── index.js │ │ ├── options.js │ │ └── styles.js │ ├── Gallery │ │ ├── Item.js │ │ ├── index.js │ │ └── styles.js │ ├── Header │ │ ├── index.js │ │ └── styles.js │ ├── Image │ │ └── index.js │ ├── Navigator │ │ ├── index.js │ │ └── styles.js │ ├── ProgressImage │ │ └── index.js │ ├── SideBar │ │ ├── index.js │ │ ├── options.js │ │ └── styles.js │ └── Toasts │ │ └── index.js ├── constants │ ├── api.js │ ├── configs.js │ └── types.js ├── container │ ├── ChangeLogs │ │ └── index.js │ ├── Gallery │ │ ├── Item.js │ │ └── index.js │ ├── Markets │ │ ├── Item.js │ │ └── index.js │ ├── Notification │ │ └── index.js │ ├── Preload │ │ ├── index.js │ │ └── styles.js │ ├── Search │ │ └── index.js │ └── VIPGroups │ │ └── index.js ├── elements │ ├── Icomoon │ │ └── index.js │ └── Icon │ │ └── index.js ├── routes.js ├── store │ ├── actions │ │ ├── account.js │ │ ├── auth.js │ │ ├── common.js │ │ ├── index.js │ │ ├── markets.js │ │ └── notification.js │ ├── api │ │ ├── account.js │ │ ├── auth.js │ │ ├── common.js │ │ ├── index.js │ │ └── markets.js │ ├── index.js │ ├── logger.js │ ├── reducers │ │ ├── auth.js │ │ ├── common.js │ │ ├── index.js │ │ ├── markets.js │ │ └── notification.js │ ├── sagas │ │ ├── account.js │ │ ├── auth.js │ │ ├── common.js │ │ ├── index.js │ │ ├── markets.js │ │ └── notification.js │ └── selectors │ │ ├── account.js │ │ ├── auth.js │ │ ├── common.js │ │ └── notification.js ├── theme │ ├── components │ │ ├── Badge.js │ │ ├── Body.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 │ │ ├── Left.js │ │ ├── ListItem.js │ │ ├── Picker.android.js │ │ ├── Picker.ios.js │ │ ├── Radio.js │ │ ├── Right.js │ │ ├── Segment.js │ │ ├── Separator.js │ │ ├── Spinner.js │ │ ├── Subtitle.js │ │ ├── SwipeRow.js │ │ ├── Switch.js │ │ ├── Tab.js │ │ ├── TabBar.js │ │ ├── TabContainer.js │ │ ├── TabHeading.js │ │ ├── Text.js │ │ ├── Textarea.js │ │ ├── Thumbnail.js │ │ ├── Title.js │ │ ├── Toast.js │ │ ├── View.js │ │ └── index.js │ └── variables │ │ ├── commonColor.js │ │ ├── material.js │ │ └── platform.js └── utils │ └── common.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/.babelrc -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/.buckconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/__tests__/App.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/android/app/src/main/assets/fonts/Roboto.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/android/app/src/main/assets/fonts/Roboto_medium.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/android/app/src/main/assets/fonts/icomoon.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/rubicon-icon-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/android/app/src/main/assets/fonts/rubicon-icon-font.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/starterkit/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/android/app/src/main/java/com/starterkit/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/starterkit/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/android/app/src/main/java/com/starterkit/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/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/ctlabvn/ReactNativeStarterKits/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/ctlabvn/ReactNativeStarterKits/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/ctlabvn/ReactNativeStarterKits/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/app.json -------------------------------------------------------------------------------- /design/splash and icon.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/design/splash and icon.sketch -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/index.js -------------------------------------------------------------------------------- /ios/starterkit-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/ios/starterkit-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/starterkit-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/ios/starterkit-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/starterkit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/ios/starterkit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/starterkit.xcodeproj/xcshareddata/xcschemes/starterkit-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/ios/starterkit.xcodeproj/xcshareddata/xcschemes/starterkit-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/starterkit.xcodeproj/xcshareddata/xcschemes/starterkit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/ios/starterkit.xcodeproj/xcshareddata/xcschemes/starterkit.xcscheme -------------------------------------------------------------------------------- /ios/starterkit/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/ios/starterkit/AppDelegate.h -------------------------------------------------------------------------------- /ios/starterkit/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/ios/starterkit/AppDelegate.m -------------------------------------------------------------------------------- /ios/starterkit/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/ios/starterkit/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/starterkit/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/ios/starterkit/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/starterkit/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/ios/starterkit/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/starterkit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/ios/starterkit/Info.plist -------------------------------------------------------------------------------- /ios/starterkit/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/ios/starterkit/main.m -------------------------------------------------------------------------------- /ios/starterkitTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/ios/starterkitTests/Info.plist -------------------------------------------------------------------------------- /ios/starterkitTests/starterkitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/ios/starterkitTests/starterkitTests.m -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/package.json -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/App.js -------------------------------------------------------------------------------- /src/assets/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/assets/fonts/icomoon.ttf -------------------------------------------------------------------------------- /src/assets/images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/assets/images/avatar.png -------------------------------------------------------------------------------- /src/assets/images/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/assets/images/index.js -------------------------------------------------------------------------------- /src/components/AfterInteractions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/components/AfterInteractions/index.js -------------------------------------------------------------------------------- /src/components/Browser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/components/Browser/index.js -------------------------------------------------------------------------------- /src/components/Browser/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/components/Browser/styles.js -------------------------------------------------------------------------------- /src/components/ConnectionStatusBar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/components/ConnectionStatusBar/index.js -------------------------------------------------------------------------------- /src/components/ConnectionStatusBar/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/components/ConnectionStatusBar/styles.js -------------------------------------------------------------------------------- /src/components/Footer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/components/Footer/index.js -------------------------------------------------------------------------------- /src/components/Footer/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/components/Footer/options.js -------------------------------------------------------------------------------- /src/components/Footer/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/components/Footer/styles.js -------------------------------------------------------------------------------- /src/components/Gallery/Item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/components/Gallery/Item.js -------------------------------------------------------------------------------- /src/components/Gallery/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/components/Gallery/index.js -------------------------------------------------------------------------------- /src/components/Gallery/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/components/Gallery/styles.js -------------------------------------------------------------------------------- /src/components/Header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/components/Header/index.js -------------------------------------------------------------------------------- /src/components/Header/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/components/Header/styles.js -------------------------------------------------------------------------------- /src/components/Image/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/components/Image/index.js -------------------------------------------------------------------------------- /src/components/Navigator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/components/Navigator/index.js -------------------------------------------------------------------------------- /src/components/Navigator/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/components/Navigator/styles.js -------------------------------------------------------------------------------- /src/components/ProgressImage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/components/ProgressImage/index.js -------------------------------------------------------------------------------- /src/components/SideBar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/components/SideBar/index.js -------------------------------------------------------------------------------- /src/components/SideBar/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/components/SideBar/options.js -------------------------------------------------------------------------------- /src/components/SideBar/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/components/SideBar/styles.js -------------------------------------------------------------------------------- /src/components/Toasts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/components/Toasts/index.js -------------------------------------------------------------------------------- /src/constants/api.js: -------------------------------------------------------------------------------- 1 | export const API_TIMEOUT = 3000; 2 | -------------------------------------------------------------------------------- /src/constants/configs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/constants/configs.js -------------------------------------------------------------------------------- /src/constants/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/constants/types.js -------------------------------------------------------------------------------- /src/container/ChangeLogs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/container/ChangeLogs/index.js -------------------------------------------------------------------------------- /src/container/Gallery/Item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/container/Gallery/Item.js -------------------------------------------------------------------------------- /src/container/Gallery/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/container/Gallery/index.js -------------------------------------------------------------------------------- /src/container/Markets/Item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/container/Markets/Item.js -------------------------------------------------------------------------------- /src/container/Markets/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/container/Markets/index.js -------------------------------------------------------------------------------- /src/container/Notification/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/container/Notification/index.js -------------------------------------------------------------------------------- /src/container/Preload/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/container/Preload/index.js -------------------------------------------------------------------------------- /src/container/Preload/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/container/Preload/styles.js -------------------------------------------------------------------------------- /src/container/Search/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/container/Search/index.js -------------------------------------------------------------------------------- /src/container/VIPGroups/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/container/VIPGroups/index.js -------------------------------------------------------------------------------- /src/elements/Icomoon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/elements/Icomoon/index.js -------------------------------------------------------------------------------- /src/elements/Icon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/elements/Icon/index.js -------------------------------------------------------------------------------- /src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/routes.js -------------------------------------------------------------------------------- /src/store/actions/account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/store/actions/account.js -------------------------------------------------------------------------------- /src/store/actions/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/store/actions/auth.js -------------------------------------------------------------------------------- /src/store/actions/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/store/actions/common.js -------------------------------------------------------------------------------- /src/store/actions/index.js: -------------------------------------------------------------------------------- 1 | export * from './common'; 2 | -------------------------------------------------------------------------------- /src/store/actions/markets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/store/actions/markets.js -------------------------------------------------------------------------------- /src/store/actions/notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/store/actions/notification.js -------------------------------------------------------------------------------- /src/store/api/account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/store/api/account.js -------------------------------------------------------------------------------- /src/store/api/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/store/api/auth.js -------------------------------------------------------------------------------- /src/store/api/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/store/api/common.js -------------------------------------------------------------------------------- /src/store/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/store/api/index.js -------------------------------------------------------------------------------- /src/store/api/markets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/store/api/markets.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/store/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/store/logger.js -------------------------------------------------------------------------------- /src/store/reducers/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/store/reducers/auth.js -------------------------------------------------------------------------------- /src/store/reducers/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/store/reducers/common.js -------------------------------------------------------------------------------- /src/store/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/store/reducers/index.js -------------------------------------------------------------------------------- /src/store/reducers/markets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/store/reducers/markets.js -------------------------------------------------------------------------------- /src/store/reducers/notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/store/reducers/notification.js -------------------------------------------------------------------------------- /src/store/sagas/account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/store/sagas/account.js -------------------------------------------------------------------------------- /src/store/sagas/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/store/sagas/auth.js -------------------------------------------------------------------------------- /src/store/sagas/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/store/sagas/common.js -------------------------------------------------------------------------------- /src/store/sagas/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/store/sagas/index.js -------------------------------------------------------------------------------- /src/store/sagas/markets.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/store/sagas/notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/store/sagas/notification.js -------------------------------------------------------------------------------- /src/store/selectors/account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/store/selectors/account.js -------------------------------------------------------------------------------- /src/store/selectors/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/store/selectors/auth.js -------------------------------------------------------------------------------- /src/store/selectors/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/store/selectors/common.js -------------------------------------------------------------------------------- /src/store/selectors/notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/store/selectors/notification.js -------------------------------------------------------------------------------- /src/theme/components/Badge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/components/Badge.js -------------------------------------------------------------------------------- /src/theme/components/Body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/components/Body.js -------------------------------------------------------------------------------- /src/theme/components/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/components/Button.js -------------------------------------------------------------------------------- /src/theme/components/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/components/Card.js -------------------------------------------------------------------------------- /src/theme/components/CardItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/components/CardItem.js -------------------------------------------------------------------------------- /src/theme/components/CheckBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/components/CheckBox.js -------------------------------------------------------------------------------- /src/theme/components/Container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/components/Container.js -------------------------------------------------------------------------------- /src/theme/components/Content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/components/Content.js -------------------------------------------------------------------------------- /src/theme/components/Fab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/components/Fab.js -------------------------------------------------------------------------------- /src/theme/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/components/Footer.js -------------------------------------------------------------------------------- /src/theme/components/FooterTab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/components/FooterTab.js -------------------------------------------------------------------------------- /src/theme/components/Form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/components/Form.js -------------------------------------------------------------------------------- /src/theme/components/H1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/components/H1.js -------------------------------------------------------------------------------- /src/theme/components/H2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/components/H2.js -------------------------------------------------------------------------------- /src/theme/components/H3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/components/H3.js -------------------------------------------------------------------------------- /src/theme/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/components/Header.js -------------------------------------------------------------------------------- /src/theme/components/Icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/components/Icon.js -------------------------------------------------------------------------------- /src/theme/components/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/components/Input.js -------------------------------------------------------------------------------- /src/theme/components/InputGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/components/InputGroup.js -------------------------------------------------------------------------------- /src/theme/components/Item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/components/Item.js -------------------------------------------------------------------------------- /src/theme/components/Label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/components/Label.js -------------------------------------------------------------------------------- /src/theme/components/Left.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/components/Left.js -------------------------------------------------------------------------------- /src/theme/components/ListItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/components/ListItem.js -------------------------------------------------------------------------------- /src/theme/components/Picker.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/components/Picker.android.js -------------------------------------------------------------------------------- /src/theme/components/Picker.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/components/Picker.ios.js -------------------------------------------------------------------------------- /src/theme/components/Radio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/components/Radio.js -------------------------------------------------------------------------------- /src/theme/components/Right.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/components/Right.js -------------------------------------------------------------------------------- /src/theme/components/Segment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/components/Segment.js -------------------------------------------------------------------------------- /src/theme/components/Separator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/components/Separator.js -------------------------------------------------------------------------------- /src/theme/components/Spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/components/Spinner.js -------------------------------------------------------------------------------- /src/theme/components/Subtitle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/components/Subtitle.js -------------------------------------------------------------------------------- /src/theme/components/SwipeRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/components/SwipeRow.js -------------------------------------------------------------------------------- /src/theme/components/Switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/components/Switch.js -------------------------------------------------------------------------------- /src/theme/components/Tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/components/Tab.js -------------------------------------------------------------------------------- /src/theme/components/TabBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/components/TabBar.js -------------------------------------------------------------------------------- /src/theme/components/TabContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/components/TabContainer.js -------------------------------------------------------------------------------- /src/theme/components/TabHeading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/components/TabHeading.js -------------------------------------------------------------------------------- /src/theme/components/Text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/components/Text.js -------------------------------------------------------------------------------- /src/theme/components/Textarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/components/Textarea.js -------------------------------------------------------------------------------- /src/theme/components/Thumbnail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/components/Thumbnail.js -------------------------------------------------------------------------------- /src/theme/components/Title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/components/Title.js -------------------------------------------------------------------------------- /src/theme/components/Toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/components/Toast.js -------------------------------------------------------------------------------- /src/theme/components/View.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/components/View.js -------------------------------------------------------------------------------- /src/theme/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/components/index.js -------------------------------------------------------------------------------- /src/theme/variables/commonColor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/variables/commonColor.js -------------------------------------------------------------------------------- /src/theme/variables/material.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/variables/material.js -------------------------------------------------------------------------------- /src/theme/variables/platform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/theme/variables/platform.js -------------------------------------------------------------------------------- /src/utils/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/src/utils/common.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctlabvn/ReactNativeStarterKits/HEAD/yarn.lock --------------------------------------------------------------------------------