├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .vscode └── launchReactNative.js ├── .watchmanconfig ├── README.md ├── __tests__ ├── index.android.js └── index.ios.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── betterlists │ │ │ ├── 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 ├── betterLists-tvOS │ └── Info.plist ├── betterLists-tvOSTests │ └── Info.plist ├── betterLists.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── betterLists-tvOS.xcscheme │ │ └── betterLists.xcscheme ├── betterLists │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── betterListsTests │ ├── Info.plist │ └── betterListsTests.m ├── jsconfig.json ├── package.json ├── src ├── actions │ └── index.js ├── api │ └── index.js ├── app.js ├── components │ ├── FlatListComponent.js │ ├── Header.js │ └── Slide.js ├── configureStore.js ├── constants │ └── index.js ├── images │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ └── logo.png └── reducers │ ├── dataReducer.js │ └── index.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/.buckconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launchReactNative.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/.vscode/launchReactNative.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/__tests__/index.android.js -------------------------------------------------------------------------------- /__tests__/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/__tests__/index.ios.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/betterlists/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/android/app/src/main/java/com/betterlists/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/betterlists/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/android/app/src/main/java/com/betterlists/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/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/mariodev12/react-native-netflix-with-flatlist/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/mariodev12/react-native-netflix-with-flatlist/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/mariodev12/react-native-netflix-with-flatlist/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'betterLists' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/index.android.js -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/index.ios.js -------------------------------------------------------------------------------- /ios/betterLists-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/ios/betterLists-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/betterLists-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/ios/betterLists-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/betterLists.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/ios/betterLists.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/betterLists.xcodeproj/xcshareddata/xcschemes/betterLists-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/ios/betterLists.xcodeproj/xcshareddata/xcschemes/betterLists-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/betterLists.xcodeproj/xcshareddata/xcschemes/betterLists.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/ios/betterLists.xcodeproj/xcshareddata/xcschemes/betterLists.xcscheme -------------------------------------------------------------------------------- /ios/betterLists/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/ios/betterLists/AppDelegate.h -------------------------------------------------------------------------------- /ios/betterLists/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/ios/betterLists/AppDelegate.m -------------------------------------------------------------------------------- /ios/betterLists/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/ios/betterLists/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/betterLists/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/ios/betterLists/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/betterLists/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/ios/betterLists/Info.plist -------------------------------------------------------------------------------- /ios/betterLists/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/ios/betterLists/main.m -------------------------------------------------------------------------------- /ios/betterListsTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/ios/betterListsTests/Info.plist -------------------------------------------------------------------------------- /ios/betterListsTests/betterListsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/ios/betterListsTests/betterListsTests.m -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/package.json -------------------------------------------------------------------------------- /src/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/src/actions/index.js -------------------------------------------------------------------------------- /src/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/src/api/index.js -------------------------------------------------------------------------------- /src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/src/app.js -------------------------------------------------------------------------------- /src/components/FlatListComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/src/components/FlatListComponent.js -------------------------------------------------------------------------------- /src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/src/components/Header.js -------------------------------------------------------------------------------- /src/components/Slide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/src/components/Slide.js -------------------------------------------------------------------------------- /src/configureStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/src/configureStore.js -------------------------------------------------------------------------------- /src/constants/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/src/constants/index.js -------------------------------------------------------------------------------- /src/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/src/images/1.jpg -------------------------------------------------------------------------------- /src/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/src/images/2.jpg -------------------------------------------------------------------------------- /src/images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/src/images/3.jpg -------------------------------------------------------------------------------- /src/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/src/images/logo.png -------------------------------------------------------------------------------- /src/reducers/dataReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/src/reducers/dataReducer.js -------------------------------------------------------------------------------- /src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/src/reducers/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariodev12/react-native-netflix-with-flatlist/HEAD/yarn.lock --------------------------------------------------------------------------------