├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.js ├── README.md ├── __tests__ └── App.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── reactnativetemplate │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── app.json ├── app ├── Common │ ├── Config.js │ ├── FontSize.js │ ├── Global.js │ ├── Request.js │ ├── SetTheme.js │ └── Tool.js ├── Component │ └── TabIcon.js ├── Pages │ ├── Login.js │ ├── Login │ │ ├── Component │ │ │ └── LoginInput.js │ │ ├── Login.js │ │ └── LoginPublic.js │ ├── Test1.js │ ├── Test2.js │ ├── Test3.js │ └── Test4.js ├── Resources │ ├── Images.js │ ├── images │ │ ├── Gank.png │ │ ├── Main.png │ │ └── ShiTu.png │ └── index.js ├── Router.js └── index.js ├── index.js ├── ios ├── ReactNativeTemplate-tvOS │ └── Info.plist ├── ReactNativeTemplate-tvOSTests │ └── Info.plist ├── ReactNativeTemplate.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── ReactNativeTemplate-tvOS.xcscheme │ │ └── ReactNativeTemplate.xcscheme ├── ReactNativeTemplate │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── ReactNativeTemplateTests │ ├── Info.plist │ └── ReactNativeTemplateTests.m ├── package.json ├── screenshots └── Login.gif └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/.babelrc -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/.buckconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/App.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/__tests__/App.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/reactnativetemplate/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/android/app/src/main/java/com/reactnativetemplate/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/reactnativetemplate/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/android/app/src/main/java/com/reactnativetemplate/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/app.json -------------------------------------------------------------------------------- /app/Common/Config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/app/Common/Config.js -------------------------------------------------------------------------------- /app/Common/FontSize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/app/Common/FontSize.js -------------------------------------------------------------------------------- /app/Common/Global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/app/Common/Global.js -------------------------------------------------------------------------------- /app/Common/Request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/app/Common/Request.js -------------------------------------------------------------------------------- /app/Common/SetTheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/app/Common/SetTheme.js -------------------------------------------------------------------------------- /app/Common/Tool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/app/Common/Tool.js -------------------------------------------------------------------------------- /app/Component/TabIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/app/Component/TabIcon.js -------------------------------------------------------------------------------- /app/Pages/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/app/Pages/Login.js -------------------------------------------------------------------------------- /app/Pages/Login/Component/LoginInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/app/Pages/Login/Component/LoginInput.js -------------------------------------------------------------------------------- /app/Pages/Login/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/app/Pages/Login/Login.js -------------------------------------------------------------------------------- /app/Pages/Login/LoginPublic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/app/Pages/Login/LoginPublic.js -------------------------------------------------------------------------------- /app/Pages/Test1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/app/Pages/Test1.js -------------------------------------------------------------------------------- /app/Pages/Test2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/app/Pages/Test2.js -------------------------------------------------------------------------------- /app/Pages/Test3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/app/Pages/Test3.js -------------------------------------------------------------------------------- /app/Pages/Test4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/app/Pages/Test4.js -------------------------------------------------------------------------------- /app/Resources/Images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/app/Resources/Images.js -------------------------------------------------------------------------------- /app/Resources/images/Gank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/app/Resources/images/Gank.png -------------------------------------------------------------------------------- /app/Resources/images/Main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/app/Resources/images/Main.png -------------------------------------------------------------------------------- /app/Resources/images/ShiTu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/app/Resources/images/ShiTu.png -------------------------------------------------------------------------------- /app/Resources/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/app/Resources/index.js -------------------------------------------------------------------------------- /app/Router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/app/Router.js -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/app/index.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/index.js -------------------------------------------------------------------------------- /ios/ReactNativeTemplate-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/ios/ReactNativeTemplate-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/ReactNativeTemplate-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/ios/ReactNativeTemplate-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/ReactNativeTemplate.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/ios/ReactNativeTemplate.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/ReactNativeTemplate.xcodeproj/xcshareddata/xcschemes/ReactNativeTemplate-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/ios/ReactNativeTemplate.xcodeproj/xcshareddata/xcschemes/ReactNativeTemplate-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/ReactNativeTemplate.xcodeproj/xcshareddata/xcschemes/ReactNativeTemplate.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/ios/ReactNativeTemplate.xcodeproj/xcshareddata/xcschemes/ReactNativeTemplate.xcscheme -------------------------------------------------------------------------------- /ios/ReactNativeTemplate/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/ios/ReactNativeTemplate/AppDelegate.h -------------------------------------------------------------------------------- /ios/ReactNativeTemplate/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/ios/ReactNativeTemplate/AppDelegate.m -------------------------------------------------------------------------------- /ios/ReactNativeTemplate/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/ios/ReactNativeTemplate/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/ReactNativeTemplate/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/ios/ReactNativeTemplate/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/ReactNativeTemplate/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/ios/ReactNativeTemplate/Info.plist -------------------------------------------------------------------------------- /ios/ReactNativeTemplate/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/ios/ReactNativeTemplate/main.m -------------------------------------------------------------------------------- /ios/ReactNativeTemplateTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/ios/ReactNativeTemplateTests/Info.plist -------------------------------------------------------------------------------- /ios/ReactNativeTemplateTests/ReactNativeTemplateTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/ios/ReactNativeTemplateTests/ReactNativeTemplateTests.m -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/Login.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/screenshots/Login.gif -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeRabbitYu/react-native-template/HEAD/yarn.lock --------------------------------------------------------------------------------