├── .buckconfig ├── .editorconfig ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.tsx ├── README.md ├── __tests__ └── App-test.js ├── android ├── app │ ├── _BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── hackernews │ │ │ └── ReactNativeFlipper.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── hackernews │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── 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 │ │ ├── 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 ├── index.js ├── install_macos.sh ├── ios ├── HackerNews.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── HackerNews.xcscheme ├── HackerNews.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── HackerNews │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ └── main.m ├── HackerNewsTests │ ├── HackerNewsTests.m │ └── Info.plist ├── Podfile └── Podfile.lock ├── jest.config.js ├── macos ├── .gitignore ├── Podfile ├── Podfile.lock ├── hackernews-iOS │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m ├── hackernews-macOS │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ ├── hackernews.entitlements │ └── main.m ├── hackernews.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── hackernews-iOS.xcscheme │ │ └── hackernews-macOS.xcscheme └── hackernews.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── metro.config.js ├── package.json ├── screenshots ├── comments-1.png ├── comments-2.png └── headlines.png ├── src ├── CommentView.tsx ├── HeadlineView.tsx ├── StoryView.tsx ├── TopHeadlines.tsx ├── constants.ts ├── styles.ts ├── types.ts └── useItem.tsx ├── tsconfig.json └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/.buckconfig -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # Windows files 2 | [*.bat] 3 | end_of_line = crlf 4 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | } 5 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/App.tsx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/__tests__/App-test.js -------------------------------------------------------------------------------- /android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/android/app/_BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/com/hackernews/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/android/app/src/debug/java/com/hackernews/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/hackernews/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/android/app/src/main/java/com/hackernews/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/hackernews/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/android/app/src/main/java/com/hackernews/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/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/G2Jose/ReactNative-HackerNews/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/G2Jose/ReactNative-HackerNews/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/G2Jose/ReactNative-HackerNews/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/G2Jose/ReactNative-HackerNews/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/G2Jose/ReactNative-HackerNews/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/G2Jose/ReactNative-HackerNews/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/G2Jose/ReactNative-HackerNews/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/G2Jose/ReactNative-HackerNews/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/G2Jose/ReactNative-HackerNews/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/index.js -------------------------------------------------------------------------------- /install_macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/install_macos.sh -------------------------------------------------------------------------------- /ios/HackerNews.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/ios/HackerNews.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/HackerNews.xcodeproj/xcshareddata/xcschemes/HackerNews.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/ios/HackerNews.xcodeproj/xcshareddata/xcschemes/HackerNews.xcscheme -------------------------------------------------------------------------------- /ios/HackerNews.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/ios/HackerNews.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/HackerNews.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/ios/HackerNews.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/HackerNews/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/ios/HackerNews/AppDelegate.h -------------------------------------------------------------------------------- /ios/HackerNews/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/ios/HackerNews/AppDelegate.m -------------------------------------------------------------------------------- /ios/HackerNews/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/ios/HackerNews/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/HackerNews/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/ios/HackerNews/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/HackerNews/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/ios/HackerNews/Info.plist -------------------------------------------------------------------------------- /ios/HackerNews/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/ios/HackerNews/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/HackerNews/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/ios/HackerNews/main.m -------------------------------------------------------------------------------- /ios/HackerNewsTests/HackerNewsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/ios/HackerNewsTests/HackerNewsTests.m -------------------------------------------------------------------------------- /ios/HackerNewsTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/ios/HackerNewsTests/Info.plist -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/jest.config.js -------------------------------------------------------------------------------- /macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/macos/.gitignore -------------------------------------------------------------------------------- /macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/macos/Podfile -------------------------------------------------------------------------------- /macos/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/macos/Podfile.lock -------------------------------------------------------------------------------- /macos/hackernews-iOS/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/macos/hackernews-iOS/AppDelegate.h -------------------------------------------------------------------------------- /macos/hackernews-iOS/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/macos/hackernews-iOS/AppDelegate.m -------------------------------------------------------------------------------- /macos/hackernews-iOS/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/macos/hackernews-iOS/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /macos/hackernews-iOS/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/macos/hackernews-iOS/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /macos/hackernews-iOS/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/macos/hackernews-iOS/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /macos/hackernews-iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/macos/hackernews-iOS/Info.plist -------------------------------------------------------------------------------- /macos/hackernews-iOS/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/macos/hackernews-iOS/main.m -------------------------------------------------------------------------------- /macos/hackernews-macOS/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/macos/hackernews-macOS/AppDelegate.h -------------------------------------------------------------------------------- /macos/hackernews-macOS/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/macos/hackernews-macOS/AppDelegate.m -------------------------------------------------------------------------------- /macos/hackernews-macOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/macos/hackernews-macOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /macos/hackernews-macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/macos/hackernews-macOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /macos/hackernews-macOS/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/macos/hackernews-macOS/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /macos/hackernews-macOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/macos/hackernews-macOS/Info.plist -------------------------------------------------------------------------------- /macos/hackernews-macOS/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/macos/hackernews-macOS/ViewController.h -------------------------------------------------------------------------------- /macos/hackernews-macOS/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/macos/hackernews-macOS/ViewController.m -------------------------------------------------------------------------------- /macos/hackernews-macOS/hackernews.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/macos/hackernews-macOS/hackernews.entitlements -------------------------------------------------------------------------------- /macos/hackernews-macOS/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/macos/hackernews-macOS/main.m -------------------------------------------------------------------------------- /macos/hackernews.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/macos/hackernews.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /macos/hackernews.xcodeproj/xcshareddata/xcschemes/hackernews-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/macos/hackernews.xcodeproj/xcshareddata/xcschemes/hackernews-iOS.xcscheme -------------------------------------------------------------------------------- /macos/hackernews.xcodeproj/xcshareddata/xcschemes/hackernews-macOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/macos/hackernews.xcodeproj/xcshareddata/xcschemes/hackernews-macOS.xcscheme -------------------------------------------------------------------------------- /macos/hackernews.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/macos/hackernews.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /macos/hackernews.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/macos/hackernews.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/comments-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/screenshots/comments-1.png -------------------------------------------------------------------------------- /screenshots/comments-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/screenshots/comments-2.png -------------------------------------------------------------------------------- /screenshots/headlines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/screenshots/headlines.png -------------------------------------------------------------------------------- /src/CommentView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/src/CommentView.tsx -------------------------------------------------------------------------------- /src/HeadlineView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/src/HeadlineView.tsx -------------------------------------------------------------------------------- /src/StoryView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/src/StoryView.tsx -------------------------------------------------------------------------------- /src/TopHeadlines.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/src/TopHeadlines.tsx -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/src/styles.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/useItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/src/useItem.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G2Jose/ReactNative-HackerNews/HEAD/yarn.lock --------------------------------------------------------------------------------