├── .npmignore ├── ItemView.js ├── LICENSE ├── README.md ├── Waterfall.js ├── dev ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.js ├── __tests__ │ └── App-test.js ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── dev │ │ │ │ ├── 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 │ ├── keystores │ │ ├── BUCK │ │ └── debug.keystore.properties │ └── settings.gradle ├── app.json ├── babel.config.js ├── index.js ├── ios │ ├── dev-tvOS │ │ └── Info.plist │ ├── dev-tvOSTests │ │ └── Info.plist │ ├── dev.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── dev-tvOS.xcscheme │ │ │ └── dev.xcscheme │ ├── dev │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── devTests │ │ ├── Info.plist │ │ └── devTests.m ├── metro.config.js ├── package-lock.json └── package.json ├── examples └── res │ ├── 0.jpg │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ └── 5.jpg ├── index.js └── package.json /.npmignore: -------------------------------------------------------------------------------- 1 | examples/ -------------------------------------------------------------------------------- /ItemView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/ItemView.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/README.md -------------------------------------------------------------------------------- /Waterfall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/Waterfall.js -------------------------------------------------------------------------------- /dev/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/.buckconfig -------------------------------------------------------------------------------- /dev/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/.flowconfig -------------------------------------------------------------------------------- /dev/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /dev/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/.gitignore -------------------------------------------------------------------------------- /dev/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /dev/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/App.js -------------------------------------------------------------------------------- /dev/__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/__tests__/App-test.js -------------------------------------------------------------------------------- /dev/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/android/app/BUCK -------------------------------------------------------------------------------- /dev/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/android/app/build.gradle -------------------------------------------------------------------------------- /dev/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/android/app/build_defs.bzl -------------------------------------------------------------------------------- /dev/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /dev/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /dev/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /dev/android/app/src/main/java/com/dev/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/android/app/src/main/java/com/dev/MainActivity.java -------------------------------------------------------------------------------- /dev/android/app/src/main/java/com/dev/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/android/app/src/main/java/com/dev/MainApplication.java -------------------------------------------------------------------------------- /dev/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /dev/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dev/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /dev/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dev/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dev/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dev/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dev/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dev/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dev/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dev/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /dev/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /dev/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/android/build.gradle -------------------------------------------------------------------------------- /dev/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/android/gradle.properties -------------------------------------------------------------------------------- /dev/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /dev/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /dev/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/android/gradlew -------------------------------------------------------------------------------- /dev/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/android/gradlew.bat -------------------------------------------------------------------------------- /dev/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/android/keystores/BUCK -------------------------------------------------------------------------------- /dev/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /dev/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'dev' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /dev/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/app.json -------------------------------------------------------------------------------- /dev/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/babel.config.js -------------------------------------------------------------------------------- /dev/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/index.js -------------------------------------------------------------------------------- /dev/ios/dev-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/ios/dev-tvOS/Info.plist -------------------------------------------------------------------------------- /dev/ios/dev-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/ios/dev-tvOSTests/Info.plist -------------------------------------------------------------------------------- /dev/ios/dev.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/ios/dev.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /dev/ios/dev.xcodeproj/xcshareddata/xcschemes/dev-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/ios/dev.xcodeproj/xcshareddata/xcschemes/dev-tvOS.xcscheme -------------------------------------------------------------------------------- /dev/ios/dev.xcodeproj/xcshareddata/xcschemes/dev.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/ios/dev.xcodeproj/xcshareddata/xcschemes/dev.xcscheme -------------------------------------------------------------------------------- /dev/ios/dev/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/ios/dev/AppDelegate.h -------------------------------------------------------------------------------- /dev/ios/dev/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/ios/dev/AppDelegate.m -------------------------------------------------------------------------------- /dev/ios/dev/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/ios/dev/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /dev/ios/dev/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/ios/dev/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /dev/ios/dev/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/ios/dev/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /dev/ios/dev/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/ios/dev/Info.plist -------------------------------------------------------------------------------- /dev/ios/dev/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/ios/dev/main.m -------------------------------------------------------------------------------- /dev/ios/devTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/ios/devTests/Info.plist -------------------------------------------------------------------------------- /dev/ios/devTests/devTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/ios/devTests/devTests.m -------------------------------------------------------------------------------- /dev/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/metro.config.js -------------------------------------------------------------------------------- /dev/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/package-lock.json -------------------------------------------------------------------------------- /dev/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/dev/package.json -------------------------------------------------------------------------------- /examples/res/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/examples/res/0.jpg -------------------------------------------------------------------------------- /examples/res/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/examples/res/1.jpg -------------------------------------------------------------------------------- /examples/res/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/examples/res/2.jpg -------------------------------------------------------------------------------- /examples/res/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/examples/res/3.jpg -------------------------------------------------------------------------------- /examples/res/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/examples/res/5.jpg -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimhol/react-native-waterfall/HEAD/package.json --------------------------------------------------------------------------------