├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.js ├── README.md ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ ├── release │ │ ├── app-release.apk │ │ └── output.json │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ └── Zocial.ttf │ │ ├── java │ │ └── com │ │ │ └── itnews │ │ │ ├── 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 ├── assets ├── 2.png ├── 3.png └── 4.png ├── components ├── CNodeJSList.js ├── JueJinList.js ├── Kr36List.js ├── NewsDetail.js ├── OSChinaList.js ├── SegmentFaultList.js ├── ToutiaoList.js ├── TuiCoolList.js ├── V2EXList.js └── ZhihuDailyList.js ├── config.js ├── images ├── 36kr.jpeg ├── cnode.png ├── juejin.png ├── oschina.png ├── segmentfault.png ├── toutiaoio.png ├── tuicool.png ├── v2ex.png └── zhihudaily.png ├── index.android.js ├── index.ios.js ├── ios ├── ITNews-tvOS │ └── Info.plist ├── ITNews-tvOSTests │ └── Info.plist ├── ITNews.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── ITNews-tvOS.xcscheme │ │ └── ITNews.xcscheme ├── ITNews │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── itnews_icon120.png │ │ │ └── itnews_icon180.png │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── ITNewsTests │ ├── ITNewsTests.m │ └── Info.plist ├── models └── Collection.js ├── package.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/.buckconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/App.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/README.md -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/release/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/android/app/release/app-release.apk -------------------------------------------------------------------------------- /android/app/release/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/android/app/release/output.json -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/itnews/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/android/app/src/main/java/com/itnews/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/itnews/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/android/app/src/main/java/com/itnews/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/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/atjiu/ITNews-React-Native/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/atjiu/ITNews-React-Native/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/atjiu/ITNews-React-Native/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/app.json -------------------------------------------------------------------------------- /assets/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/assets/2.png -------------------------------------------------------------------------------- /assets/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/assets/3.png -------------------------------------------------------------------------------- /assets/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/assets/4.png -------------------------------------------------------------------------------- /components/CNodeJSList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/components/CNodeJSList.js -------------------------------------------------------------------------------- /components/JueJinList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/components/JueJinList.js -------------------------------------------------------------------------------- /components/Kr36List.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/components/Kr36List.js -------------------------------------------------------------------------------- /components/NewsDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/components/NewsDetail.js -------------------------------------------------------------------------------- /components/OSChinaList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/components/OSChinaList.js -------------------------------------------------------------------------------- /components/SegmentFaultList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/components/SegmentFaultList.js -------------------------------------------------------------------------------- /components/ToutiaoList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/components/ToutiaoList.js -------------------------------------------------------------------------------- /components/TuiCoolList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/components/TuiCoolList.js -------------------------------------------------------------------------------- /components/V2EXList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/components/V2EXList.js -------------------------------------------------------------------------------- /components/ZhihuDailyList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/components/ZhihuDailyList.js -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/config.js -------------------------------------------------------------------------------- /images/36kr.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/images/36kr.jpeg -------------------------------------------------------------------------------- /images/cnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/images/cnode.png -------------------------------------------------------------------------------- /images/juejin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/images/juejin.png -------------------------------------------------------------------------------- /images/oschina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/images/oschina.png -------------------------------------------------------------------------------- /images/segmentfault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/images/segmentfault.png -------------------------------------------------------------------------------- /images/toutiaoio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/images/toutiaoio.png -------------------------------------------------------------------------------- /images/tuicool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/images/tuicool.png -------------------------------------------------------------------------------- /images/v2ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/images/v2ex.png -------------------------------------------------------------------------------- /images/zhihudaily.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/images/zhihudaily.png -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/index.android.js -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/index.ios.js -------------------------------------------------------------------------------- /ios/ITNews-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/ios/ITNews-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/ITNews-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/ios/ITNews-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/ITNews.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/ios/ITNews.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/ITNews.xcodeproj/xcshareddata/xcschemes/ITNews-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/ios/ITNews.xcodeproj/xcshareddata/xcschemes/ITNews-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/ITNews.xcodeproj/xcshareddata/xcschemes/ITNews.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/ios/ITNews.xcodeproj/xcshareddata/xcschemes/ITNews.xcscheme -------------------------------------------------------------------------------- /ios/ITNews/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/ios/ITNews/AppDelegate.h -------------------------------------------------------------------------------- /ios/ITNews/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/ios/ITNews/AppDelegate.m -------------------------------------------------------------------------------- /ios/ITNews/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/ios/ITNews/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/ITNews/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/ios/ITNews/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/ITNews/Images.xcassets/AppIcon.appiconset/itnews_icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/ios/ITNews/Images.xcassets/AppIcon.appiconset/itnews_icon120.png -------------------------------------------------------------------------------- /ios/ITNews/Images.xcassets/AppIcon.appiconset/itnews_icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/ios/ITNews/Images.xcassets/AppIcon.appiconset/itnews_icon180.png -------------------------------------------------------------------------------- /ios/ITNews/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/ios/ITNews/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/ITNews/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/ios/ITNews/Info.plist -------------------------------------------------------------------------------- /ios/ITNews/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/ios/ITNews/main.m -------------------------------------------------------------------------------- /ios/ITNewsTests/ITNewsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/ios/ITNewsTests/ITNewsTests.m -------------------------------------------------------------------------------- /ios/ITNewsTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/ios/ITNewsTests/Info.plist -------------------------------------------------------------------------------- /models/Collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/models/Collection.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atjiu/ITNews-React-Native/HEAD/yarn.lock --------------------------------------------------------------------------------