├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitignore ├── .watchmanconfig ├── App ├── Components │ ├── Loader.js │ ├── SearchBar.js │ ├── VideoDetail.js │ ├── VideoList.js │ └── VideoListItem.js ├── Root.js ├── Styles │ ├── loader.style.js │ ├── searchBar.style.js │ └── videoListItem.style.js └── Utils │ └── Api.js ├── README.md ├── __tests__ ├── index.android.js └── index.ios.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── app1 │ │ │ ├── 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 ├── index.android.js ├── index.ios.js ├── ios ├── app1.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── app1.xcscheme ├── app1 │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── app1Tests │ ├── Info.plist │ └── app1Tests.m └── package.json /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/HEAD/.buckconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App/Components/Loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/HEAD/App/Components/Loader.js -------------------------------------------------------------------------------- /App/Components/SearchBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/HEAD/App/Components/SearchBar.js -------------------------------------------------------------------------------- /App/Components/VideoDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/HEAD/App/Components/VideoDetail.js -------------------------------------------------------------------------------- /App/Components/VideoList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/HEAD/App/Components/VideoList.js -------------------------------------------------------------------------------- /App/Components/VideoListItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/HEAD/App/Components/VideoListItem.js -------------------------------------------------------------------------------- /App/Root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/HEAD/App/Root.js -------------------------------------------------------------------------------- /App/Styles/loader.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/HEAD/App/Styles/loader.style.js -------------------------------------------------------------------------------- /App/Styles/searchBar.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/HEAD/App/Styles/searchBar.style.js -------------------------------------------------------------------------------- /App/Styles/videoListItem.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/HEAD/App/Styles/videoListItem.style.js -------------------------------------------------------------------------------- /App/Utils/Api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/HEAD/App/Utils/Api.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/HEAD/__tests__/index.android.js -------------------------------------------------------------------------------- /__tests__/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/HEAD/__tests__/index.ios.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/app1/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/HEAD/android/app/src/main/java/com/app1/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/app1/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/HEAD/android/app/src/main/java/com/app1/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/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/JohnProg/react-native-youtube-clone/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/JohnProg/react-native-youtube-clone/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/JohnProg/react-native-youtube-clone/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'app1' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/HEAD/index.android.js -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/HEAD/index.ios.js -------------------------------------------------------------------------------- /ios/app1.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/HEAD/ios/app1.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/app1.xcodeproj/xcshareddata/xcschemes/app1.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/HEAD/ios/app1.xcodeproj/xcshareddata/xcschemes/app1.xcscheme -------------------------------------------------------------------------------- /ios/app1/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/HEAD/ios/app1/AppDelegate.h -------------------------------------------------------------------------------- /ios/app1/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/HEAD/ios/app1/AppDelegate.m -------------------------------------------------------------------------------- /ios/app1/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/HEAD/ios/app1/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/app1/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/HEAD/ios/app1/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/app1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/HEAD/ios/app1/Info.plist -------------------------------------------------------------------------------- /ios/app1/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/HEAD/ios/app1/main.m -------------------------------------------------------------------------------- /ios/app1Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/HEAD/ios/app1Tests/Info.plist -------------------------------------------------------------------------------- /ios/app1Tests/app1Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/HEAD/ios/app1Tests/app1Tests.m -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnProg/react-native-youtube-clone/HEAD/package.json --------------------------------------------------------------------------------