├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── CODE_OF_CONDUCT.md ├── 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 │ │ │ ├── SFBold.ttf │ │ │ ├── SFRegular.ttf │ │ │ ├── SFThin.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ ├── Zocial.ttf │ │ │ └── segoeui.ttf │ │ ├── java │ │ └── com │ │ │ └── feline │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── drawable │ │ └── splash_screen.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ ├── color.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── app.json ├── app ├── app.js ├── components │ ├── childComment.js │ ├── comment.js │ ├── discussion.js │ ├── info.js │ ├── media.js │ ├── package.json │ ├── post.js │ └── user.js ├── scenes │ ├── about.js │ ├── mainScreen.js │ ├── package.json │ ├── postPage.js │ ├── settings.js │ ├── topicScreen.js │ └── webScreen.js ├── stores │ ├── analytics.js │ ├── category.js │ ├── package.json │ ├── posts.js │ ├── theme.js │ └── topic.js └── themes │ ├── light.js │ └── package.json ├── assets ├── fonts │ ├── SFBold.ttf │ ├── SFRegular.ttf │ └── SFThin.ttf └── images │ ├── icon.png │ └── row_bag.png ├── index.android.js ├── package.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/.babelrc -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/.buckconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/__tests__/index.android.js -------------------------------------------------------------------------------- /__tests__/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/__tests__/index.ios.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SFBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/android/app/src/main/assets/fonts/SFBold.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SFRegular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/android/app/src/main/assets/fonts/SFRegular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SFThin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/android/app/src/main/assets/fonts/SFThin.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/segoeui.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/android/app/src/main/assets/fonts/segoeui.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/feline/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/android/app/src/main/java/com/feline/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/feline/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/android/app/src/main/java/com/feline/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/splash_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/android/app/src/main/res/drawable/splash_screen.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/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/arjunkomath/Feline-for-Product-Hunt/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/arjunkomath/Feline-for-Product-Hunt/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/arjunkomath/Feline-for-Product-Hunt/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/android/app/src/main/res/values/color.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/app.json -------------------------------------------------------------------------------- /app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/app/app.js -------------------------------------------------------------------------------- /app/components/childComment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/app/components/childComment.js -------------------------------------------------------------------------------- /app/components/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/app/components/comment.js -------------------------------------------------------------------------------- /app/components/discussion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/app/components/discussion.js -------------------------------------------------------------------------------- /app/components/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/app/components/info.js -------------------------------------------------------------------------------- /app/components/media.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/app/components/media.js -------------------------------------------------------------------------------- /app/components/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@component" 3 | } -------------------------------------------------------------------------------- /app/components/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/app/components/post.js -------------------------------------------------------------------------------- /app/components/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/app/components/user.js -------------------------------------------------------------------------------- /app/scenes/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/app/scenes/about.js -------------------------------------------------------------------------------- /app/scenes/mainScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/app/scenes/mainScreen.js -------------------------------------------------------------------------------- /app/scenes/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@scene" 3 | } -------------------------------------------------------------------------------- /app/scenes/postPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/app/scenes/postPage.js -------------------------------------------------------------------------------- /app/scenes/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/app/scenes/settings.js -------------------------------------------------------------------------------- /app/scenes/topicScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/app/scenes/topicScreen.js -------------------------------------------------------------------------------- /app/scenes/webScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/app/scenes/webScreen.js -------------------------------------------------------------------------------- /app/stores/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/app/stores/analytics.js -------------------------------------------------------------------------------- /app/stores/category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/app/stores/category.js -------------------------------------------------------------------------------- /app/stores/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@store" 3 | } -------------------------------------------------------------------------------- /app/stores/posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/app/stores/posts.js -------------------------------------------------------------------------------- /app/stores/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/app/stores/theme.js -------------------------------------------------------------------------------- /app/stores/topic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/app/stores/topic.js -------------------------------------------------------------------------------- /app/themes/light.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/app/themes/light.js -------------------------------------------------------------------------------- /app/themes/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@theme" 3 | } -------------------------------------------------------------------------------- /assets/fonts/SFBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/assets/fonts/SFBold.ttf -------------------------------------------------------------------------------- /assets/fonts/SFRegular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/assets/fonts/SFRegular.ttf -------------------------------------------------------------------------------- /assets/fonts/SFThin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/assets/fonts/SFThin.ttf -------------------------------------------------------------------------------- /assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/assets/images/icon.png -------------------------------------------------------------------------------- /assets/images/row_bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/assets/images/row_bag.png -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/index.android.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjunkomath/Feline-for-Product-Hunt/HEAD/yarn.lock --------------------------------------------------------------------------------