├── .buckconfig ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .graphqlconfig.yml ├── .prettierrc.js ├── .watchmanconfig ├── App.js ├── README.md ├── __tests__ └── App-test.js ├── amplify ├── .config │ └── project-config.json ├── backend │ ├── api │ │ └── tiktok │ │ │ ├── parameters.json │ │ │ ├── schema.graphql │ │ │ ├── stacks │ │ │ └── CustomResources.json │ │ │ └── transform.conf.json │ ├── backend-config.json │ └── tags.json ├── cli.json └── team-provider-info.json ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── tiktok_clone │ │ │ └── ReactNativeFlipper.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── tiktok_clone │ │ │ ├── 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 ├── graphql ├── mutations.js ├── queries.js └── subscriptions.js ├── index.js ├── ios ├── Podfile ├── tiktok_clone-tvOS │ └── Info.plist ├── tiktok_clone-tvOSTests │ └── Info.plist ├── tiktok_clone.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── tiktok_clone-tvOS.xcscheme │ │ └── tiktok_clone.xcscheme ├── tiktok_clone │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ └── main.m └── tiktok_cloneTests │ ├── Info.plist │ └── tiktok_cloneTests.m ├── metro.config.js ├── package.json ├── src ├── assets │ └── images │ │ └── plus-icon.png ├── components │ └── Post │ │ ├── index.js │ │ └── styles.js ├── data │ └── posts.js ├── graphql │ ├── mutations.js │ ├── queries.js │ ├── schema.json │ └── subscriptions.js ├── navigation │ ├── homeBottomTabNavigator.js │ └── index.js └── screens │ ├── Camera │ ├── index.js │ └── styles.js │ ├── CreatePost │ ├── index.js │ └── styles.js │ └── Home │ └── index.js └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/.gitignore -------------------------------------------------------------------------------- /.graphqlconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/.graphqlconfig.yml -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/App.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/__tests__/App-test.js -------------------------------------------------------------------------------- /amplify/.config/project-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/amplify/.config/project-config.json -------------------------------------------------------------------------------- /amplify/backend/api/tiktok/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/amplify/backend/api/tiktok/parameters.json -------------------------------------------------------------------------------- /amplify/backend/api/tiktok/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/amplify/backend/api/tiktok/schema.graphql -------------------------------------------------------------------------------- /amplify/backend/api/tiktok/stacks/CustomResources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/amplify/backend/api/tiktok/stacks/CustomResources.json -------------------------------------------------------------------------------- /amplify/backend/api/tiktok/transform.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/amplify/backend/api/tiktok/transform.conf.json -------------------------------------------------------------------------------- /amplify/backend/backend-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/amplify/backend/backend-config.json -------------------------------------------------------------------------------- /amplify/backend/tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/amplify/backend/tags.json -------------------------------------------------------------------------------- /amplify/cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/amplify/cli.json -------------------------------------------------------------------------------- /amplify/team-provider-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/amplify/team-provider-info.json -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/com/tiktok_clone/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/android/app/src/debug/java/com/tiktok_clone/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/tiktok_clone/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/android/app/src/main/java/com/tiktok_clone/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/tiktok_clone/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/android/app/src/main/java/com/tiktok_clone/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/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/lambiengcode/react_tiktok_app/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/lambiengcode/react_tiktok_app/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/lambiengcode/react_tiktok_app/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/lambiengcode/react_tiktok_app/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/lambiengcode/react_tiktok_app/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/lambiengcode/react_tiktok_app/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/lambiengcode/react_tiktok_app/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/lambiengcode/react_tiktok_app/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/lambiengcode/react_tiktok_app/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/babel.config.js -------------------------------------------------------------------------------- /graphql/mutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/graphql/mutations.js -------------------------------------------------------------------------------- /graphql/queries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/graphql/queries.js -------------------------------------------------------------------------------- /graphql/subscriptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/graphql/subscriptions.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/index.js -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/tiktok_clone-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/ios/tiktok_clone-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/tiktok_clone-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/ios/tiktok_clone-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/tiktok_clone.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/ios/tiktok_clone.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/tiktok_clone.xcodeproj/xcshareddata/xcschemes/tiktok_clone-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/ios/tiktok_clone.xcodeproj/xcshareddata/xcschemes/tiktok_clone-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/tiktok_clone.xcodeproj/xcshareddata/xcschemes/tiktok_clone.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/ios/tiktok_clone.xcodeproj/xcshareddata/xcschemes/tiktok_clone.xcscheme -------------------------------------------------------------------------------- /ios/tiktok_clone/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/ios/tiktok_clone/AppDelegate.h -------------------------------------------------------------------------------- /ios/tiktok_clone/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/ios/tiktok_clone/AppDelegate.m -------------------------------------------------------------------------------- /ios/tiktok_clone/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/ios/tiktok_clone/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/tiktok_clone/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/ios/tiktok_clone/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/tiktok_clone/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/ios/tiktok_clone/Info.plist -------------------------------------------------------------------------------- /ios/tiktok_clone/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/ios/tiktok_clone/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/tiktok_clone/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/ios/tiktok_clone/main.m -------------------------------------------------------------------------------- /ios/tiktok_cloneTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/ios/tiktok_cloneTests/Info.plist -------------------------------------------------------------------------------- /ios/tiktok_cloneTests/tiktok_cloneTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/ios/tiktok_cloneTests/tiktok_cloneTests.m -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/package.json -------------------------------------------------------------------------------- /src/assets/images/plus-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/src/assets/images/plus-icon.png -------------------------------------------------------------------------------- /src/components/Post/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/src/components/Post/index.js -------------------------------------------------------------------------------- /src/components/Post/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/src/components/Post/styles.js -------------------------------------------------------------------------------- /src/data/posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/src/data/posts.js -------------------------------------------------------------------------------- /src/graphql/mutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/src/graphql/mutations.js -------------------------------------------------------------------------------- /src/graphql/queries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/src/graphql/queries.js -------------------------------------------------------------------------------- /src/graphql/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/src/graphql/schema.json -------------------------------------------------------------------------------- /src/graphql/subscriptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/src/graphql/subscriptions.js -------------------------------------------------------------------------------- /src/navigation/homeBottomTabNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/src/navigation/homeBottomTabNavigator.js -------------------------------------------------------------------------------- /src/navigation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/src/navigation/index.js -------------------------------------------------------------------------------- /src/screens/Camera/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/src/screens/Camera/index.js -------------------------------------------------------------------------------- /src/screens/Camera/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/src/screens/Camera/styles.js -------------------------------------------------------------------------------- /src/screens/CreatePost/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/src/screens/CreatePost/index.js -------------------------------------------------------------------------------- /src/screens/CreatePost/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/src/screens/CreatePost/styles.js -------------------------------------------------------------------------------- /src/screens/Home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/src/screens/Home/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/react_tiktok_app/HEAD/yarn.lock --------------------------------------------------------------------------------