├── .DS_Store ├── README.md ├── ReactNativeLewinScaffold ├── .buckconfig ├── .env ├── .env.pro ├── .env.staging ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.js ├── __tests__ │ └── App-test.js ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── reactnativelewinscaffold │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── app.json ├── babel.config.js ├── index.js ├── ios │ ├── Config.xcconfig │ ├── File.swift │ ├── Podfile │ ├── Podfile.lock │ ├── ReactNativeLewinScaffold-Bridging-Header.h │ ├── ReactNativeLewinScaffold-tvOS │ │ └── Info.plist │ ├── ReactNativeLewinScaffold-tvOSTests │ │ └── Info.plist │ ├── ReactNativeLewinScaffold.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── ReactNativeLewinScaffold-tvOS.xcscheme │ │ │ └── ReactNativeLewinScaffold.xcscheme │ ├── ReactNativeLewinScaffold.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── ReactNativeLewinScaffold │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── ReactNativeLewinScaffoldTests │ │ ├── Info.plist │ │ └── ReactNativeLewinScaffoldTests.m ├── metro.config.js ├── package-lock.json ├── package.json ├── scripts │ └── codepush ├── src │ ├── assets │ │ └── icons │ │ │ ├── back-black.png │ │ │ ├── back-white.png │ │ │ ├── back@2x.png │ │ │ ├── back@3x.png │ │ │ ├── close_update.png │ │ │ └── update_icon.png │ ├── bootstrap │ │ ├── codepush.ts │ │ ├── index.tsx │ │ ├── lifecycle.ts │ │ ├── native-update.ts │ │ ├── redux-dva.ts │ │ ├── redux-logger.ts │ │ └── redux-persist.ts │ ├── components │ │ └── Buttons.tsx │ ├── configs │ │ ├── index.ts │ │ └── persist.ts │ ├── help │ │ ├── react-navigation.ts │ │ ├── redux-persist.ts │ │ ├── redux.ts │ │ └── update.ts │ ├── models │ │ ├── codepush.ts │ │ ├── crucial-actions.ts │ │ ├── event.action.ts │ │ ├── index.ts │ │ ├── model.ts │ │ └── user.ts │ ├── routers │ │ ├── TabIcon.tsx │ │ ├── icon │ │ │ ├── account@2x.png │ │ │ ├── account@3x.png │ │ │ ├── contract@2x.png │ │ │ ├── contract@3x.png │ │ │ ├── exchange@2x.png │ │ │ ├── exchange@3x.png │ │ │ ├── market@2x.png │ │ │ ├── market@3x.png │ │ │ ├── mine@2x.png │ │ │ └── mine@3x.png │ │ ├── index.tsx │ │ └── stack-config.ts │ ├── screens │ │ ├── ParentScreen.tsx │ │ ├── ScreenProps.ts │ │ ├── home │ │ │ └── index.tsx │ │ ├── login │ │ │ └── index.tsx │ │ ├── mine │ │ │ ├── index.tsx │ │ │ └── test.tsx │ │ ├── order │ │ │ └── index.tsx │ │ ├── other │ │ │ └── CodePushModal.tsx │ │ └── register │ │ │ └── RegisterScreen.tsx │ └── utils │ │ ├── system.ts │ │ ├── theme.tsx │ │ └── version.ts ├── tsconfig.json └── yarn.lock ├── fast.gif ├── slow.gif └── yarn.lock /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/README.md -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/.buckconfig -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/.env -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/.env.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/.env.pro -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/.env.staging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/.env.staging -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/.flowconfig -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/.gitignore -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/.prettierrc.js -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/App.js -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/__tests__/App-test.js -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/android/app/BUCK -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/android/app/build.gradle -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/android/app/build_defs.bzl -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/android/app/debug.keystore -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/android/app/src/main/java/com/reactnativelewinscaffold/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/android/app/src/main/java/com/reactnativelewinscaffold/MainActivity.java -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/android/app/src/main/java/com/reactnativelewinscaffold/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/android/app/src/main/java/com/reactnativelewinscaffold/MainApplication.java -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/android/build.gradle -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/android/gradle.properties -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/android/gradlew -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/android/gradlew.bat -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/android/settings.gradle -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/app.json -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/babel.config.js -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/index.js -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/ios/Config.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/ios/Config.xcconfig -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/ios/File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/ios/File.swift -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/ios/Podfile -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/ios/Podfile.lock -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/ios/ReactNativeLewinScaffold-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/ios/ReactNativeLewinScaffold-Bridging-Header.h -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/ios/ReactNativeLewinScaffold-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/ios/ReactNativeLewinScaffold-tvOS/Info.plist -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/ios/ReactNativeLewinScaffold-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/ios/ReactNativeLewinScaffold-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/ios/ReactNativeLewinScaffold.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/ios/ReactNativeLewinScaffold.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/ios/ReactNativeLewinScaffold.xcodeproj/xcshareddata/xcschemes/ReactNativeLewinScaffold-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/ios/ReactNativeLewinScaffold.xcodeproj/xcshareddata/xcschemes/ReactNativeLewinScaffold-tvOS.xcscheme -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/ios/ReactNativeLewinScaffold.xcodeproj/xcshareddata/xcschemes/ReactNativeLewinScaffold.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/ios/ReactNativeLewinScaffold.xcodeproj/xcshareddata/xcschemes/ReactNativeLewinScaffold.xcscheme -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/ios/ReactNativeLewinScaffold.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/ios/ReactNativeLewinScaffold.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/ios/ReactNativeLewinScaffold.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/ios/ReactNativeLewinScaffold.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/ios/ReactNativeLewinScaffold/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/ios/ReactNativeLewinScaffold/AppDelegate.h -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/ios/ReactNativeLewinScaffold/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/ios/ReactNativeLewinScaffold/AppDelegate.m -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/ios/ReactNativeLewinScaffold/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/ios/ReactNativeLewinScaffold/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/ios/ReactNativeLewinScaffold/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/ios/ReactNativeLewinScaffold/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/ios/ReactNativeLewinScaffold/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/ios/ReactNativeLewinScaffold/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/ios/ReactNativeLewinScaffold/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/ios/ReactNativeLewinScaffold/Info.plist -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/ios/ReactNativeLewinScaffold/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/ios/ReactNativeLewinScaffold/main.m -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/ios/ReactNativeLewinScaffoldTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/ios/ReactNativeLewinScaffoldTests/Info.plist -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/ios/ReactNativeLewinScaffoldTests/ReactNativeLewinScaffoldTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/ios/ReactNativeLewinScaffoldTests/ReactNativeLewinScaffoldTests.m -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/metro.config.js -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/package-lock.json -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/package.json -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/scripts/codepush: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/scripts/codepush -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/assets/icons/back-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/assets/icons/back-black.png -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/assets/icons/back-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/assets/icons/back-white.png -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/assets/icons/back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/assets/icons/back@2x.png -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/assets/icons/back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/assets/icons/back@3x.png -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/assets/icons/close_update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/assets/icons/close_update.png -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/assets/icons/update_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/assets/icons/update_icon.png -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/bootstrap/codepush.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/bootstrap/codepush.ts -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/bootstrap/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/bootstrap/index.tsx -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/bootstrap/lifecycle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/bootstrap/lifecycle.ts -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/bootstrap/native-update.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * native 检查更新类 3 | */ -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/bootstrap/redux-dva.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/bootstrap/redux-dva.ts -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/bootstrap/redux-logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/bootstrap/redux-logger.ts -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/bootstrap/redux-persist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/bootstrap/redux-persist.ts -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/components/Buttons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/components/Buttons.tsx -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/configs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/configs/index.ts -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/configs/persist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/configs/persist.ts -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/help/react-navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/help/react-navigation.ts -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/help/redux-persist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/help/redux-persist.ts -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/help/redux.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/help/redux.ts -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/help/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/help/update.ts -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/models/codepush.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/models/codepush.ts -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/models/crucial-actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/models/crucial-actions.ts -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/models/event.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/models/event.action.ts -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/models/index.ts -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/models/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/models/model.ts -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/models/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/models/user.ts -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/routers/TabIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/routers/TabIcon.tsx -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/routers/icon/account@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/routers/icon/account@2x.png -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/routers/icon/account@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/routers/icon/account@3x.png -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/routers/icon/contract@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/routers/icon/contract@2x.png -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/routers/icon/contract@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/routers/icon/contract@3x.png -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/routers/icon/exchange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/routers/icon/exchange@2x.png -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/routers/icon/exchange@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/routers/icon/exchange@3x.png -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/routers/icon/market@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/routers/icon/market@2x.png -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/routers/icon/market@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/routers/icon/market@3x.png -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/routers/icon/mine@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/routers/icon/mine@2x.png -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/routers/icon/mine@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/routers/icon/mine@3x.png -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/routers/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/routers/index.tsx -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/routers/stack-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/routers/stack-config.ts -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/screens/ParentScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/screens/ParentScreen.tsx -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/screens/ScreenProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/screens/ScreenProps.ts -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/screens/home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/screens/home/index.tsx -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/screens/login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/screens/login/index.tsx -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/screens/mine/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/screens/mine/index.tsx -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/screens/mine/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/screens/mine/test.tsx -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/screens/order/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/screens/order/index.tsx -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/screens/other/CodePushModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/screens/other/CodePushModal.tsx -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/screens/register/RegisterScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/screens/register/RegisterScreen.tsx -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/utils/system.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/utils/system.ts -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/utils/theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/utils/theme.tsx -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/src/utils/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/src/utils/version.ts -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/tsconfig.json -------------------------------------------------------------------------------- /ReactNativeLewinScaffold/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/ReactNativeLewinScaffold/yarn.lock -------------------------------------------------------------------------------- /fast.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/fast.gif -------------------------------------------------------------------------------- /slow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/slow.gif -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LewinJun/react-native-lewin-scaffold/HEAD/yarn.lock --------------------------------------------------------------------------------