├── .buckconfig ├── .bundle └── config ├── .eslintrc.js ├── .gitignore ├── .node-version ├── .npmrc ├── .prettierrc.js ├── .ruby-version ├── .vscode └── settings.json ├── .watchmanconfig ├── Gemfile ├── README.md ├── __tests__ └── App-test.tsx ├── android ├── app │ ├── _BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── my-release-key.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── wowimrn │ │ │ └── ReactNativeFlipper.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── wowimrn │ │ │ ├── MainActivity.java │ │ │ ├── MainApplication.java │ │ │ ├── RCTButton.java │ │ │ ├── RCTButtonPackage.java │ │ │ ├── ToastModule.java │ │ │ └── newarchitecture │ │ │ ├── MainApplicationReactNativeHost.java │ │ │ ├── components │ │ │ └── MainComponentsRegistry.java │ │ │ └── modules │ │ │ └── MainApplicationTurboModuleManagerDelegate.java │ │ ├── jni │ │ ├── CMakeLists.txt │ │ ├── MainApplicationModuleProvider.cpp │ │ ├── MainApplicationModuleProvider.h │ │ ├── MainApplicationTurboModuleManagerDelegate.cpp │ │ ├── MainApplicationTurboModuleManagerDelegate.h │ │ ├── MainComponentsRegistry.cpp │ │ ├── MainComponentsRegistry.h │ │ └── OnLoad.cpp │ │ └── res │ │ ├── drawable │ │ └── rn_edit_text_material.xml │ │ ├── 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 │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── babel.config.js ├── docs ├── README.md └── RNCamera.js ├── fix-camera.sh ├── iconfont.json ├── index.js ├── ios ├── .xcode.env ├── CustomButton.m ├── MyButton.h ├── MyButton.m ├── MyButtonManager.h ├── MyButtonManager.m ├── Podfile ├── Podfile.lock ├── RNTMapManager.m ├── WowImRN.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── WowImRN.xcscheme ├── WowImRN.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── WowImRN │ ├── AppDelegate.h │ ├── AppDelegate.mm │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ └── main.m └── WowImRNTests │ ├── Info.plist │ └── WowImRNTests.m ├── metro.config.js ├── package.json ├── react-native.config.js ├── screenshot ├── animate.gif ├── fs.png ├── full_bg.png ├── home.png ├── login_screen.png ├── me_login.png ├── me_un_login.png ├── scan.png ├── wx.jpeg └── wx.png ├── src ├── App.tsx ├── assets │ ├── animation │ │ ├── ani.json │ │ └── bounce-fruit.json │ ├── iconfont │ │ ├── IconCameraFill.tsx │ │ ├── IconCart.tsx │ │ ├── IconCartO.tsx │ │ ├── IconContact.tsx │ │ ├── IconContactO.tsx │ │ ├── IconEye.tsx │ │ ├── IconFile.tsx │ │ ├── IconFile1.tsx │ │ ├── IconHome.tsx │ │ ├── IconHomeO.tsx │ │ ├── IconManage.tsx │ │ ├── IconManageO.tsx │ │ ├── IconNoEye.tsx │ │ ├── IconPeople.tsx │ │ ├── IconPeopleO.tsx │ │ ├── IconPhotoFill.tsx │ │ ├── IconPositionFill.tsx │ │ ├── IconVideoCallFill.tsx │ │ ├── IconVoiceFill.tsx │ │ ├── helper.ts │ │ └── index.tsx │ └── img │ │ ├── account.png │ │ ├── account_o.png │ │ ├── arrow_left.png │ │ ├── avatar.png │ │ ├── cart.png │ │ ├── cart_o.png │ │ ├── find.png │ │ ├── find_o.png │ │ ├── home.png │ │ ├── home_o.png │ │ └── loading.gif ├── baseUI │ ├── BButton │ │ └── index.tsx │ ├── BEmpty │ │ └── index.tsx │ ├── BHStack │ │ └── index.tsx │ ├── BImagePicker │ │ └── index.tsx │ ├── BInput │ │ └── index.tsx │ ├── BLine │ │ └── index.tsx │ ├── BList │ │ └── index.tsx │ ├── BListItem │ │ └── index.tsx │ ├── BPage │ │ ├── BNPage.tsx │ │ ├── BNavBar.tsx │ │ └── index.tsx │ ├── BRefreshControl │ │ └── index.tsx │ ├── BRow │ │ └── index.tsx │ ├── BSegment │ │ ├── Item.tsx │ │ └── index.tsx │ ├── BShadow │ │ └── index.tsx │ ├── BText │ │ └── index.tsx │ ├── BTextArea │ │ └── index.tsx │ ├── BVStack │ │ └── index.tsx │ ├── Loading │ │ ├── index.tsx │ │ ├── loading_01.gif │ │ ├── loading_02.gif │ │ ├── loading_03.gif │ │ ├── loading_04.gif │ │ ├── loading_05.gif │ │ ├── loading_06.gif │ │ └── loading_07.gif │ ├── MTouchableOpacity │ │ └── index.tsx │ ├── TabBarIcon │ │ └── index.tsx │ └── icon │ │ ├── IconArrowLeft.tsx │ │ ├── IconArrowRight.tsx │ │ ├── IconClose.tsx │ │ ├── IconIosArrowRoundBack.tsx │ │ ├── IconKongbai1.tsx │ │ └── helper.ts ├── config │ ├── index.ts │ ├── request.ts │ └── theme.ts ├── global.d.ts ├── models │ ├── account.ts │ ├── contact.ts │ └── index.ts ├── native │ └── MyButton.js ├── navigator │ ├── MainTab.tsx │ ├── MainTabBar.tsx │ └── index.tsx ├── pages │ ├── animate │ │ └── index.tsx │ ├── camera │ │ ├── index.tsx │ │ └── version-camera.tsx │ ├── category │ │ ├── data.json │ │ └── index.tsx │ ├── contact │ │ ├── List.tsx │ │ ├── data.tsx │ │ └── index.tsx │ ├── detail │ │ └── index.tsx │ ├── download │ │ └── index.tsx │ ├── fs │ │ └── index.tsx │ ├── h5 │ │ └── index.tsx │ ├── home │ │ └── index.tsx │ ├── login │ │ ├── index.tsx │ │ └── style.ts │ ├── me │ │ └── index.tsx │ └── table │ │ └── index.tsx ├── plugins │ ├── notification │ │ ├── Demo.jsx │ │ ├── NotifService.js │ │ └── NotificationHandler.js │ └── plugin-one │ │ └── .gitkeep ├── services │ ├── account.ts │ └── contact.ts ├── types │ ├── ResData.ts │ └── UserInfo.ts ├── utils │ ├── auth.ts │ ├── date.ts │ ├── env.ts │ ├── logger.ts │ ├── screen.ts │ ├── storage.ts │ └── uuid.ts └── wrappers │ └── .gitkeep ├── tsconfig.json └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/.buckconfig -------------------------------------------------------------------------------- /.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/.bundle/config -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 16 2 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.5 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App-test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/__tests__/App-test.tsx -------------------------------------------------------------------------------- /android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/app/_BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/my-release-key.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/app/my-release-key.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/com/wowimrn/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/app/src/debug/java/com/wowimrn/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/wowimrn/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/app/src/main/java/com/wowimrn/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/wowimrn/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/app/src/main/java/com/wowimrn/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/wowimrn/RCTButton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/app/src/main/java/com/wowimrn/RCTButton.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/wowimrn/RCTButtonPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/app/src/main/java/com/wowimrn/RCTButtonPackage.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/wowimrn/ToastModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/app/src/main/java/com/wowimrn/ToastModule.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/wowimrn/newarchitecture/MainApplicationReactNativeHost.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/app/src/main/java/com/wowimrn/newarchitecture/MainApplicationReactNativeHost.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/wowimrn/newarchitecture/components/MainComponentsRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/app/src/main/java/com/wowimrn/newarchitecture/components/MainComponentsRegistry.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/wowimrn/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/app/src/main/java/com/wowimrn/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java -------------------------------------------------------------------------------- /android/app/src/main/jni/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/app/src/main/jni/CMakeLists.txt -------------------------------------------------------------------------------- /android/app/src/main/jni/MainApplicationModuleProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/app/src/main/jni/MainApplicationModuleProvider.cpp -------------------------------------------------------------------------------- /android/app/src/main/jni/MainApplicationModuleProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/app/src/main/jni/MainApplicationModuleProvider.h -------------------------------------------------------------------------------- /android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp -------------------------------------------------------------------------------- /android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h -------------------------------------------------------------------------------- /android/app/src/main/jni/MainComponentsRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/app/src/main/jni/MainComponentsRegistry.cpp -------------------------------------------------------------------------------- /android/app/src/main/jni/MainComponentsRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/app/src/main/jni/MainComponentsRegistry.h -------------------------------------------------------------------------------- /android/app/src/main/jni/OnLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/app/src/main/jni/OnLoad.cpp -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/ colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/app/src/main/res/values/ colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/babel.config.js -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/RNCamera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/docs/RNCamera.js -------------------------------------------------------------------------------- /fix-camera.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/fix-camera.sh -------------------------------------------------------------------------------- /iconfont.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/iconfont.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/index.js -------------------------------------------------------------------------------- /ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/ios/.xcode.env -------------------------------------------------------------------------------- /ios/CustomButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/ios/CustomButton.m -------------------------------------------------------------------------------- /ios/MyButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/ios/MyButton.h -------------------------------------------------------------------------------- /ios/MyButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/ios/MyButton.m -------------------------------------------------------------------------------- /ios/MyButtonManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/ios/MyButtonManager.h -------------------------------------------------------------------------------- /ios/MyButtonManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/ios/MyButtonManager.m -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/RNTMapManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/ios/RNTMapManager.m -------------------------------------------------------------------------------- /ios/WowImRN.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/ios/WowImRN.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/WowImRN.xcodeproj/xcshareddata/xcschemes/WowImRN.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/ios/WowImRN.xcodeproj/xcshareddata/xcschemes/WowImRN.xcscheme -------------------------------------------------------------------------------- /ios/WowImRN.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/ios/WowImRN.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/WowImRN.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/ios/WowImRN.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/WowImRN/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/ios/WowImRN/AppDelegate.h -------------------------------------------------------------------------------- /ios/WowImRN/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/ios/WowImRN/AppDelegate.mm -------------------------------------------------------------------------------- /ios/WowImRN/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/ios/WowImRN/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/WowImRN/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/ios/WowImRN/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/WowImRN/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/ios/WowImRN/Info.plist -------------------------------------------------------------------------------- /ios/WowImRN/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/ios/WowImRN/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/WowImRN/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/ios/WowImRN/main.m -------------------------------------------------------------------------------- /ios/WowImRNTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/ios/WowImRNTests/Info.plist -------------------------------------------------------------------------------- /ios/WowImRNTests/WowImRNTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/ios/WowImRNTests/WowImRNTests.m -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/package.json -------------------------------------------------------------------------------- /react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/react-native.config.js -------------------------------------------------------------------------------- /screenshot/animate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/screenshot/animate.gif -------------------------------------------------------------------------------- /screenshot/fs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/screenshot/fs.png -------------------------------------------------------------------------------- /screenshot/full_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/screenshot/full_bg.png -------------------------------------------------------------------------------- /screenshot/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/screenshot/home.png -------------------------------------------------------------------------------- /screenshot/login_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/screenshot/login_screen.png -------------------------------------------------------------------------------- /screenshot/me_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/screenshot/me_login.png -------------------------------------------------------------------------------- /screenshot/me_un_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/screenshot/me_un_login.png -------------------------------------------------------------------------------- /screenshot/scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/screenshot/scan.png -------------------------------------------------------------------------------- /screenshot/wx.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/screenshot/wx.jpeg -------------------------------------------------------------------------------- /screenshot/wx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/screenshot/wx.png -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/assets/animation/ani.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/assets/animation/ani.json -------------------------------------------------------------------------------- /src/assets/animation/bounce-fruit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/assets/animation/bounce-fruit.json -------------------------------------------------------------------------------- /src/assets/iconfont/IconCameraFill.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/assets/iconfont/IconCameraFill.tsx -------------------------------------------------------------------------------- /src/assets/iconfont/IconCart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/assets/iconfont/IconCart.tsx -------------------------------------------------------------------------------- /src/assets/iconfont/IconCartO.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/assets/iconfont/IconCartO.tsx -------------------------------------------------------------------------------- /src/assets/iconfont/IconContact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/assets/iconfont/IconContact.tsx -------------------------------------------------------------------------------- /src/assets/iconfont/IconContactO.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/assets/iconfont/IconContactO.tsx -------------------------------------------------------------------------------- /src/assets/iconfont/IconEye.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/assets/iconfont/IconEye.tsx -------------------------------------------------------------------------------- /src/assets/iconfont/IconFile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/assets/iconfont/IconFile.tsx -------------------------------------------------------------------------------- /src/assets/iconfont/IconFile1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/assets/iconfont/IconFile1.tsx -------------------------------------------------------------------------------- /src/assets/iconfont/IconHome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/assets/iconfont/IconHome.tsx -------------------------------------------------------------------------------- /src/assets/iconfont/IconHomeO.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/assets/iconfont/IconHomeO.tsx -------------------------------------------------------------------------------- /src/assets/iconfont/IconManage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/assets/iconfont/IconManage.tsx -------------------------------------------------------------------------------- /src/assets/iconfont/IconManageO.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/assets/iconfont/IconManageO.tsx -------------------------------------------------------------------------------- /src/assets/iconfont/IconNoEye.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/assets/iconfont/IconNoEye.tsx -------------------------------------------------------------------------------- /src/assets/iconfont/IconPeople.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/assets/iconfont/IconPeople.tsx -------------------------------------------------------------------------------- /src/assets/iconfont/IconPeopleO.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/assets/iconfont/IconPeopleO.tsx -------------------------------------------------------------------------------- /src/assets/iconfont/IconPhotoFill.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/assets/iconfont/IconPhotoFill.tsx -------------------------------------------------------------------------------- /src/assets/iconfont/IconPositionFill.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/assets/iconfont/IconPositionFill.tsx -------------------------------------------------------------------------------- /src/assets/iconfont/IconVideoCallFill.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/assets/iconfont/IconVideoCallFill.tsx -------------------------------------------------------------------------------- /src/assets/iconfont/IconVoiceFill.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/assets/iconfont/IconVoiceFill.tsx -------------------------------------------------------------------------------- /src/assets/iconfont/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/assets/iconfont/helper.ts -------------------------------------------------------------------------------- /src/assets/iconfont/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/assets/iconfont/index.tsx -------------------------------------------------------------------------------- /src/assets/img/account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/assets/img/account.png -------------------------------------------------------------------------------- /src/assets/img/account_o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/assets/img/account_o.png -------------------------------------------------------------------------------- /src/assets/img/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/assets/img/arrow_left.png -------------------------------------------------------------------------------- /src/assets/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/assets/img/avatar.png -------------------------------------------------------------------------------- /src/assets/img/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/assets/img/cart.png -------------------------------------------------------------------------------- /src/assets/img/cart_o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/assets/img/cart_o.png -------------------------------------------------------------------------------- /src/assets/img/find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/assets/img/find.png -------------------------------------------------------------------------------- /src/assets/img/find_o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/assets/img/find_o.png -------------------------------------------------------------------------------- /src/assets/img/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/assets/img/home.png -------------------------------------------------------------------------------- /src/assets/img/home_o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/assets/img/home_o.png -------------------------------------------------------------------------------- /src/assets/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/assets/img/loading.gif -------------------------------------------------------------------------------- /src/baseUI/BButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/baseUI/BButton/index.tsx -------------------------------------------------------------------------------- /src/baseUI/BEmpty/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/baseUI/BEmpty/index.tsx -------------------------------------------------------------------------------- /src/baseUI/BHStack/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/baseUI/BHStack/index.tsx -------------------------------------------------------------------------------- /src/baseUI/BImagePicker/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/baseUI/BImagePicker/index.tsx -------------------------------------------------------------------------------- /src/baseUI/BInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/baseUI/BInput/index.tsx -------------------------------------------------------------------------------- /src/baseUI/BLine/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/baseUI/BLine/index.tsx -------------------------------------------------------------------------------- /src/baseUI/BList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/baseUI/BList/index.tsx -------------------------------------------------------------------------------- /src/baseUI/BListItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/baseUI/BListItem/index.tsx -------------------------------------------------------------------------------- /src/baseUI/BPage/BNPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/baseUI/BPage/BNPage.tsx -------------------------------------------------------------------------------- /src/baseUI/BPage/BNavBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/baseUI/BPage/BNavBar.tsx -------------------------------------------------------------------------------- /src/baseUI/BPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/baseUI/BPage/index.tsx -------------------------------------------------------------------------------- /src/baseUI/BRefreshControl/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/baseUI/BRefreshControl/index.tsx -------------------------------------------------------------------------------- /src/baseUI/BRow/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/baseUI/BRow/index.tsx -------------------------------------------------------------------------------- /src/baseUI/BSegment/Item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/baseUI/BSegment/Item.tsx -------------------------------------------------------------------------------- /src/baseUI/BSegment/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/baseUI/BSegment/index.tsx -------------------------------------------------------------------------------- /src/baseUI/BShadow/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/baseUI/BShadow/index.tsx -------------------------------------------------------------------------------- /src/baseUI/BText/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/baseUI/BText/index.tsx -------------------------------------------------------------------------------- /src/baseUI/BTextArea/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/baseUI/BTextArea/index.tsx -------------------------------------------------------------------------------- /src/baseUI/BVStack/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/baseUI/BVStack/index.tsx -------------------------------------------------------------------------------- /src/baseUI/Loading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/baseUI/Loading/index.tsx -------------------------------------------------------------------------------- /src/baseUI/Loading/loading_01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/baseUI/Loading/loading_01.gif -------------------------------------------------------------------------------- /src/baseUI/Loading/loading_02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/baseUI/Loading/loading_02.gif -------------------------------------------------------------------------------- /src/baseUI/Loading/loading_03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/baseUI/Loading/loading_03.gif -------------------------------------------------------------------------------- /src/baseUI/Loading/loading_04.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/baseUI/Loading/loading_04.gif -------------------------------------------------------------------------------- /src/baseUI/Loading/loading_05.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/baseUI/Loading/loading_05.gif -------------------------------------------------------------------------------- /src/baseUI/Loading/loading_06.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/baseUI/Loading/loading_06.gif -------------------------------------------------------------------------------- /src/baseUI/Loading/loading_07.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/baseUI/Loading/loading_07.gif -------------------------------------------------------------------------------- /src/baseUI/MTouchableOpacity/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/baseUI/MTouchableOpacity/index.tsx -------------------------------------------------------------------------------- /src/baseUI/TabBarIcon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/baseUI/TabBarIcon/index.tsx -------------------------------------------------------------------------------- /src/baseUI/icon/IconArrowLeft.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/baseUI/icon/IconArrowLeft.tsx -------------------------------------------------------------------------------- /src/baseUI/icon/IconArrowRight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/baseUI/icon/IconArrowRight.tsx -------------------------------------------------------------------------------- /src/baseUI/icon/IconClose.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/baseUI/icon/IconClose.tsx -------------------------------------------------------------------------------- /src/baseUI/icon/IconIosArrowRoundBack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/baseUI/icon/IconIosArrowRoundBack.tsx -------------------------------------------------------------------------------- /src/baseUI/icon/IconKongbai1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/baseUI/icon/IconKongbai1.tsx -------------------------------------------------------------------------------- /src/baseUI/icon/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/baseUI/icon/helper.ts -------------------------------------------------------------------------------- /src/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/config/index.ts -------------------------------------------------------------------------------- /src/config/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/config/request.ts -------------------------------------------------------------------------------- /src/config/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/config/theme.ts -------------------------------------------------------------------------------- /src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/global.d.ts -------------------------------------------------------------------------------- /src/models/account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/models/account.ts -------------------------------------------------------------------------------- /src/models/contact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/models/contact.ts -------------------------------------------------------------------------------- /src/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/models/index.ts -------------------------------------------------------------------------------- /src/native/MyButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/native/MyButton.js -------------------------------------------------------------------------------- /src/navigator/MainTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/navigator/MainTab.tsx -------------------------------------------------------------------------------- /src/navigator/MainTabBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/navigator/MainTabBar.tsx -------------------------------------------------------------------------------- /src/navigator/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/navigator/index.tsx -------------------------------------------------------------------------------- /src/pages/animate/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/pages/animate/index.tsx -------------------------------------------------------------------------------- /src/pages/camera/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/pages/camera/index.tsx -------------------------------------------------------------------------------- /src/pages/camera/version-camera.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/pages/camera/version-camera.tsx -------------------------------------------------------------------------------- /src/pages/category/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/pages/category/data.json -------------------------------------------------------------------------------- /src/pages/category/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/pages/category/index.tsx -------------------------------------------------------------------------------- /src/pages/contact/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/pages/contact/List.tsx -------------------------------------------------------------------------------- /src/pages/contact/data.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/pages/contact/data.tsx -------------------------------------------------------------------------------- /src/pages/contact/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/pages/contact/index.tsx -------------------------------------------------------------------------------- /src/pages/detail/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/pages/detail/index.tsx -------------------------------------------------------------------------------- /src/pages/download/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/pages/download/index.tsx -------------------------------------------------------------------------------- /src/pages/fs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/pages/fs/index.tsx -------------------------------------------------------------------------------- /src/pages/h5/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/pages/h5/index.tsx -------------------------------------------------------------------------------- /src/pages/home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/pages/home/index.tsx -------------------------------------------------------------------------------- /src/pages/login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/pages/login/index.tsx -------------------------------------------------------------------------------- /src/pages/login/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/pages/login/style.ts -------------------------------------------------------------------------------- /src/pages/me/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/pages/me/index.tsx -------------------------------------------------------------------------------- /src/pages/table/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/pages/table/index.tsx -------------------------------------------------------------------------------- /src/plugins/notification/Demo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/plugins/notification/Demo.jsx -------------------------------------------------------------------------------- /src/plugins/notification/NotifService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/plugins/notification/NotifService.js -------------------------------------------------------------------------------- /src/plugins/notification/NotificationHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/plugins/notification/NotificationHandler.js -------------------------------------------------------------------------------- /src/plugins/plugin-one/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/services/account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/services/account.ts -------------------------------------------------------------------------------- /src/services/contact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/services/contact.ts -------------------------------------------------------------------------------- /src/types/ResData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/types/ResData.ts -------------------------------------------------------------------------------- /src/types/UserInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/types/UserInfo.ts -------------------------------------------------------------------------------- /src/utils/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/utils/auth.ts -------------------------------------------------------------------------------- /src/utils/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/utils/date.ts -------------------------------------------------------------------------------- /src/utils/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/utils/env.ts -------------------------------------------------------------------------------- /src/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/utils/logger.ts -------------------------------------------------------------------------------- /src/utils/screen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/utils/screen.ts -------------------------------------------------------------------------------- /src/utils/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/utils/storage.ts -------------------------------------------------------------------------------- /src/utils/uuid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/src/utils/uuid.ts -------------------------------------------------------------------------------- /src/wrappers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiiai/react-native-template/HEAD/yarn.lock --------------------------------------------------------------------------------