├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── LICENSE ├── README.md ├── __tests__ ├── index.android.js └── index.ios.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── 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 │ │ │ └── news │ │ │ ├── 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 ├── index.android.js ├── index.ios.js ├── ios ├── news-tvOS │ └── Info.plist ├── news-tvOSTests │ └── Info.plist ├── news.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── news-tvOS.xcscheme │ │ └── news.xcscheme ├── news │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── newsTests │ ├── Info.plist │ └── newsTests.m ├── jsconfig.json ├── package.json ├── src ├── App.js ├── Navigation.js ├── Setup.js ├── assets │ ├── animations │ │ ├── loading.json │ │ └── setup.json │ └── images │ │ └── bg.jpg ├── commons │ ├── Anis.js │ ├── Arrays.js │ ├── Colors.js │ ├── Configs.js │ ├── Constants.js │ ├── Icon.js │ ├── Images.js │ ├── Strings.js │ ├── Styles.js │ └── index.js ├── components │ ├── Button.js │ ├── Header.js │ ├── Icon.js │ ├── Loading.js │ ├── SnackBar.js │ ├── Tab.js │ ├── Text.js │ ├── Toast.js │ ├── index.js │ └── styles │ │ ├── Button.js │ │ ├── Header.js │ │ ├── Loading.js │ │ ├── SnackBar.js │ │ ├── Tab.js │ │ ├── Text.js │ │ └── Toast.js ├── helper │ ├── AsyncStorage.js │ ├── Fetch.js │ ├── Navigation.js │ └── index.js ├── redux │ ├── actions │ │ └── App.js │ └── reducers │ │ ├── App.js │ │ └── index.js └── scenes │ ├── Articles.js │ ├── DetailPost.js │ ├── Home.js │ ├── Splash.js │ └── styles │ ├── Articles.js │ ├── Home.js │ └── Splash.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/.buckconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/__tests__/index.android.js -------------------------------------------------------------------------------- /__tests__/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/__tests__/index.ios.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/news/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/android/app/src/main/java/com/news/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/news/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/android/app/src/main/java/com/news/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/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/luulam/React-Native-News-App/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/luulam/React-Native-News-App/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/luulam/React-Native-News-App/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/app.json -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/index.android.js -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/index.ios.js -------------------------------------------------------------------------------- /ios/news-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/ios/news-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/news-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/ios/news-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/news.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/ios/news.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/news.xcodeproj/xcshareddata/xcschemes/news-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/ios/news.xcodeproj/xcshareddata/xcschemes/news-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/news.xcodeproj/xcshareddata/xcschemes/news.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/ios/news.xcodeproj/xcshareddata/xcschemes/news.xcscheme -------------------------------------------------------------------------------- /ios/news/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/ios/news/AppDelegate.h -------------------------------------------------------------------------------- /ios/news/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/ios/news/AppDelegate.m -------------------------------------------------------------------------------- /ios/news/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/ios/news/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/news/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/ios/news/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/news/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/ios/news/Info.plist -------------------------------------------------------------------------------- /ios/news/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/ios/news/main.m -------------------------------------------------------------------------------- /ios/newsTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/ios/newsTests/Info.plist -------------------------------------------------------------------------------- /ios/newsTests/newsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/ios/newsTests/newsTests.m -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/package.json -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/src/App.js -------------------------------------------------------------------------------- /src/Navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/src/Navigation.js -------------------------------------------------------------------------------- /src/Setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/src/Setup.js -------------------------------------------------------------------------------- /src/assets/animations/loading.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/src/assets/animations/loading.json -------------------------------------------------------------------------------- /src/assets/animations/setup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/src/assets/animations/setup.json -------------------------------------------------------------------------------- /src/assets/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/src/assets/images/bg.jpg -------------------------------------------------------------------------------- /src/commons/Anis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/src/commons/Anis.js -------------------------------------------------------------------------------- /src/commons/Arrays.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/src/commons/Arrays.js -------------------------------------------------------------------------------- /src/commons/Colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/src/commons/Colors.js -------------------------------------------------------------------------------- /src/commons/Configs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/src/commons/Configs.js -------------------------------------------------------------------------------- /src/commons/Constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/src/commons/Constants.js -------------------------------------------------------------------------------- /src/commons/Icon.js: -------------------------------------------------------------------------------- 1 | export default icons = { 2 | back: 'keyboard-arrow-left', 3 | } -------------------------------------------------------------------------------- /src/commons/Images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/src/commons/Images.js -------------------------------------------------------------------------------- /src/commons/Strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/src/commons/Strings.js -------------------------------------------------------------------------------- /src/commons/Styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/src/commons/Styles.js -------------------------------------------------------------------------------- /src/commons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/src/commons/index.js -------------------------------------------------------------------------------- /src/components/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/src/components/Button.js -------------------------------------------------------------------------------- /src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/src/components/Header.js -------------------------------------------------------------------------------- /src/components/Icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/src/components/Icon.js -------------------------------------------------------------------------------- /src/components/Loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/src/components/Loading.js -------------------------------------------------------------------------------- /src/components/SnackBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/src/components/SnackBar.js -------------------------------------------------------------------------------- /src/components/Tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/src/components/Tab.js -------------------------------------------------------------------------------- /src/components/Text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/src/components/Text.js -------------------------------------------------------------------------------- /src/components/Toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/src/components/Toast.js -------------------------------------------------------------------------------- /src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/src/components/index.js -------------------------------------------------------------------------------- /src/components/styles/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/src/components/styles/Button.js -------------------------------------------------------------------------------- /src/components/styles/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/src/components/styles/Header.js -------------------------------------------------------------------------------- /src/components/styles/Loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/src/components/styles/Loading.js -------------------------------------------------------------------------------- /src/components/styles/SnackBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/src/components/styles/SnackBar.js -------------------------------------------------------------------------------- /src/components/styles/Tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/src/components/styles/Tab.js -------------------------------------------------------------------------------- /src/components/styles/Text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/src/components/styles/Text.js -------------------------------------------------------------------------------- /src/components/styles/Toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/src/components/styles/Toast.js -------------------------------------------------------------------------------- /src/helper/AsyncStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/src/helper/AsyncStorage.js -------------------------------------------------------------------------------- /src/helper/Fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/src/helper/Fetch.js -------------------------------------------------------------------------------- /src/helper/Navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/src/helper/Navigation.js -------------------------------------------------------------------------------- /src/helper/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/src/helper/index.js -------------------------------------------------------------------------------- /src/redux/actions/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/src/redux/actions/App.js -------------------------------------------------------------------------------- /src/redux/reducers/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/src/redux/reducers/App.js -------------------------------------------------------------------------------- /src/redux/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/src/redux/reducers/index.js -------------------------------------------------------------------------------- /src/scenes/Articles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/src/scenes/Articles.js -------------------------------------------------------------------------------- /src/scenes/DetailPost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/src/scenes/DetailPost.js -------------------------------------------------------------------------------- /src/scenes/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/src/scenes/Home.js -------------------------------------------------------------------------------- /src/scenes/Splash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/src/scenes/Splash.js -------------------------------------------------------------------------------- /src/scenes/styles/Articles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/src/scenes/styles/Articles.js -------------------------------------------------------------------------------- /src/scenes/styles/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/src/scenes/styles/Home.js -------------------------------------------------------------------------------- /src/scenes/styles/Splash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/src/scenes/styles/Splash.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luulam/React-Native-News-App/HEAD/yarn.lock --------------------------------------------------------------------------------