├── .gitignore ├── Application └── View │ ├── Loading.js │ ├── NewsDetail.js │ ├── NewsList.js │ ├── Setting.js │ └── TabBar.js ├── README.md ├── demo └── images │ ├── 1.png │ └── 2.png ├── iOS ├── ReactNativeNews.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── ReactNativeNews.xcscheme ├── ReactNativeNews │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── ReactNativeNewsTests │ ├── Info.plist │ └── ReactNativeNewsTests.m ├── icon.png ├── index.ios.js ├── main.jsbundle └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabalt/ReactNativeNews/HEAD/.gitignore -------------------------------------------------------------------------------- /Application/View/Loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabalt/ReactNativeNews/HEAD/Application/View/Loading.js -------------------------------------------------------------------------------- /Application/View/NewsDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabalt/ReactNativeNews/HEAD/Application/View/NewsDetail.js -------------------------------------------------------------------------------- /Application/View/NewsList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabalt/ReactNativeNews/HEAD/Application/View/NewsList.js -------------------------------------------------------------------------------- /Application/View/Setting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabalt/ReactNativeNews/HEAD/Application/View/Setting.js -------------------------------------------------------------------------------- /Application/View/TabBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabalt/ReactNativeNews/HEAD/Application/View/TabBar.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabalt/ReactNativeNews/HEAD/README.md -------------------------------------------------------------------------------- /demo/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabalt/ReactNativeNews/HEAD/demo/images/1.png -------------------------------------------------------------------------------- /demo/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabalt/ReactNativeNews/HEAD/demo/images/2.png -------------------------------------------------------------------------------- /iOS/ReactNativeNews.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabalt/ReactNativeNews/HEAD/iOS/ReactNativeNews.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iOS/ReactNativeNews.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabalt/ReactNativeNews/HEAD/iOS/ReactNativeNews.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iOS/ReactNativeNews.xcodeproj/xcshareddata/xcschemes/ReactNativeNews.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabalt/ReactNativeNews/HEAD/iOS/ReactNativeNews.xcodeproj/xcshareddata/xcschemes/ReactNativeNews.xcscheme -------------------------------------------------------------------------------- /iOS/ReactNativeNews/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabalt/ReactNativeNews/HEAD/iOS/ReactNativeNews/AppDelegate.h -------------------------------------------------------------------------------- /iOS/ReactNativeNews/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabalt/ReactNativeNews/HEAD/iOS/ReactNativeNews/AppDelegate.m -------------------------------------------------------------------------------- /iOS/ReactNativeNews/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabalt/ReactNativeNews/HEAD/iOS/ReactNativeNews/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /iOS/ReactNativeNews/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabalt/ReactNativeNews/HEAD/iOS/ReactNativeNews/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iOS/ReactNativeNews/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabalt/ReactNativeNews/HEAD/iOS/ReactNativeNews/Info.plist -------------------------------------------------------------------------------- /iOS/ReactNativeNews/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabalt/ReactNativeNews/HEAD/iOS/ReactNativeNews/main.m -------------------------------------------------------------------------------- /iOS/ReactNativeNewsTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabalt/ReactNativeNews/HEAD/iOS/ReactNativeNewsTests/Info.plist -------------------------------------------------------------------------------- /iOS/ReactNativeNewsTests/ReactNativeNewsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabalt/ReactNativeNews/HEAD/iOS/ReactNativeNewsTests/ReactNativeNewsTests.m -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabalt/ReactNativeNews/HEAD/icon.png -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabalt/ReactNativeNews/HEAD/index.ios.js -------------------------------------------------------------------------------- /main.jsbundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabalt/ReactNativeNews/HEAD/main.jsbundle -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabalt/ReactNativeNews/HEAD/package.json --------------------------------------------------------------------------------