├── .buckconfig ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── __tests__ └── App-test.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── rnihsw │ │ │ ├── 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.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── assets ├── NZ.jpg ├── avignon.jpg ├── cutecat.jpg ├── doctorwho.jpg ├── pullrefresh.jpg └── tvShowContent.js ├── babel.config.js ├── index.js ├── ios ├── Podfile ├── Podfile.lock ├── RNIHSW-tvOS │ └── Info.plist ├── RNIHSW-tvOSTests │ └── Info.plist ├── RNIHSW.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── RNIHSW-tvOS.xcscheme │ │ └── RNIHSW.xcscheme ├── RNIHSW.xcworkspace │ └── contents.xcworkspacedata ├── RNIHSW │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── RNIHSWTests │ ├── Info.plist │ └── RNIHSWTests.m ├── metro.config.js ├── package.json ├── src ├── App.js └── Pages │ ├── Avignon.js │ ├── BasicUsage.js │ ├── Colors.js │ ├── Menu.js │ ├── PullToRefresh.js │ ├── TvShow.js │ └── index.js └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/__tests__/App-test.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/rnihsw/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/android/app/src/main/java/com/rnihsw/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/rnihsw/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/android/app/src/main/java/com/rnihsw/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/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/bamlab/react-native-image-header-scroll-view-example/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/bamlab/react-native-image-header-scroll-view-example/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/bamlab/react-native-image-header-scroll-view-example/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/bamlab/react-native-image-header-scroll-view-example/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/bamlab/react-native-image-header-scroll-view-example/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/bamlab/react-native-image-header-scroll-view-example/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/bamlab/react-native-image-header-scroll-view-example/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/bamlab/react-native-image-header-scroll-view-example/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/bamlab/react-native-image-header-scroll-view-example/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/app.json -------------------------------------------------------------------------------- /assets/NZ.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/assets/NZ.jpg -------------------------------------------------------------------------------- /assets/avignon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/assets/avignon.jpg -------------------------------------------------------------------------------- /assets/cutecat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/assets/cutecat.jpg -------------------------------------------------------------------------------- /assets/doctorwho.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/assets/doctorwho.jpg -------------------------------------------------------------------------------- /assets/pullrefresh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/assets/pullrefresh.jpg -------------------------------------------------------------------------------- /assets/tvShowContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/assets/tvShowContent.js -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/index.js -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/RNIHSW-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/ios/RNIHSW-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/RNIHSW-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/ios/RNIHSW-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/RNIHSW.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/ios/RNIHSW.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/RNIHSW.xcodeproj/xcshareddata/xcschemes/RNIHSW-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/ios/RNIHSW.xcodeproj/xcshareddata/xcschemes/RNIHSW-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/RNIHSW.xcodeproj/xcshareddata/xcschemes/RNIHSW.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/ios/RNIHSW.xcodeproj/xcshareddata/xcschemes/RNIHSW.xcscheme -------------------------------------------------------------------------------- /ios/RNIHSW.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/ios/RNIHSW.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/RNIHSW/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/ios/RNIHSW/AppDelegate.h -------------------------------------------------------------------------------- /ios/RNIHSW/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/ios/RNIHSW/AppDelegate.m -------------------------------------------------------------------------------- /ios/RNIHSW/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/ios/RNIHSW/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/RNIHSW/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/ios/RNIHSW/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/RNIHSW/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/ios/RNIHSW/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/RNIHSW/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/ios/RNIHSW/Info.plist -------------------------------------------------------------------------------- /ios/RNIHSW/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/ios/RNIHSW/main.m -------------------------------------------------------------------------------- /ios/RNIHSWTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/ios/RNIHSWTests/Info.plist -------------------------------------------------------------------------------- /ios/RNIHSWTests/RNIHSWTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/ios/RNIHSWTests/RNIHSWTests.m -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/package.json -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/src/App.js -------------------------------------------------------------------------------- /src/Pages/Avignon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/src/Pages/Avignon.js -------------------------------------------------------------------------------- /src/Pages/BasicUsage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/src/Pages/BasicUsage.js -------------------------------------------------------------------------------- /src/Pages/Colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/src/Pages/Colors.js -------------------------------------------------------------------------------- /src/Pages/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/src/Pages/Menu.js -------------------------------------------------------------------------------- /src/Pages/PullToRefresh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/src/Pages/PullToRefresh.js -------------------------------------------------------------------------------- /src/Pages/TvShow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/src/Pages/TvShow.js -------------------------------------------------------------------------------- /src/Pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/src/Pages/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-image-header-scroll-view-example/HEAD/yarn.lock --------------------------------------------------------------------------------