├── README.md ├── android ├── .gradle │ └── 2.4 │ │ └── taskArtifacts │ │ ├── cache.properties │ │ ├── cache.properties.lock │ │ ├── fileHashes.bin │ │ ├── fileSnapshots.bin │ │ ├── outputFileStates.bin │ │ └── taskArtifacts.bin ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── libraries │ │ ├── android_jsc_r174650.xml │ │ ├── appcompat_v7_23_0_1.xml │ │ ├── bolts_android_1_1_4.xml │ │ ├── drawee_0_6_1.xml │ │ ├── fbcore_0_6_1.xml │ │ ├── fresco_0_6_1.xml │ │ ├── imagepipeline_0_6_1.xml │ │ ├── imagepipeline_okhttp_0_6_1.xml │ │ ├── jackson_core_2_2_3.xml │ │ ├── jsr305_3_0_0.xml │ │ ├── library_2_4_0.xml │ │ ├── okhttp_2_4_0.xml │ │ ├── okhttp_ws_2_4_0.xml │ │ ├── okio_1_5_0.xml │ │ ├── react_native_0_14_0.xml │ │ ├── recyclerview_v7_23_0_1.xml │ │ ├── support_annotations_23_0_1.xml │ │ └── support_v4_23_0_1.xml │ ├── misc.xml │ ├── modules.xml │ ├── runConfigurations.xml │ ├── vcs.xml │ └── workspace.xml ├── ReboundScrollView.iml ├── app │ ├── ReboundScrollView.iml │ ├── app.iml │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── jg │ │ │ └── zhang │ │ │ └── scrollview │ │ │ ├── .ReboundScrollView.java.un~ │ │ │ ├── .ReboundScrollViewManager.java.un~ │ │ │ ├── MainActivity.java │ │ │ ├── ReboundScrollView.java │ │ │ ├── ReboundScrollViewManager.java │ │ │ └── ReboundScrollViewPackage.java │ │ └── res │ │ ├── drawable-hdpi │ │ ├── ic_launcher.png │ │ ├── test.jpg │ │ ├── test2.jpg │ │ └── test3.jpg │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ │ ├── layout │ │ └── activity_main.xml │ │ ├── menu │ │ └── main.xml │ │ ├── values-sw600dp │ │ └── dimens.xml │ │ ├── values-sw720dp-land │ │ └── dimens.xml │ │ ├── values-v11 │ │ └── styles.xml │ │ ├── values-v14 │ │ └── styles.xml │ │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── import-summary.txt ├── local.properties └── settings.gradle ├── index.js ├── package.json ├── screen.gif └── screen2.gif /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/README.md -------------------------------------------------------------------------------- /android/.gradle/2.4/taskArtifacts/cache.properties: -------------------------------------------------------------------------------- 1 | #Wed Nov 18 08:46:28 HKT 2015 2 | -------------------------------------------------------------------------------- /android/.gradle/2.4/taskArtifacts/cache.properties.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/.gradle/2.4/taskArtifacts/cache.properties.lock -------------------------------------------------------------------------------- /android/.gradle/2.4/taskArtifacts/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/.gradle/2.4/taskArtifacts/fileHashes.bin -------------------------------------------------------------------------------- /android/.gradle/2.4/taskArtifacts/fileSnapshots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/.gradle/2.4/taskArtifacts/fileSnapshots.bin -------------------------------------------------------------------------------- /android/.gradle/2.4/taskArtifacts/outputFileStates.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/.gradle/2.4/taskArtifacts/outputFileStates.bin -------------------------------------------------------------------------------- /android/.gradle/2.4/taskArtifacts/taskArtifacts.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/.gradle/2.4/taskArtifacts/taskArtifacts.bin -------------------------------------------------------------------------------- /android/.idea/.name: -------------------------------------------------------------------------------- 1 | ReboundScrollView -------------------------------------------------------------------------------- /android/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/.idea/compiler.xml -------------------------------------------------------------------------------- /android/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /android/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/.idea/gradle.xml -------------------------------------------------------------------------------- /android/.idea/libraries/android_jsc_r174650.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/.idea/libraries/android_jsc_r174650.xml -------------------------------------------------------------------------------- /android/.idea/libraries/appcompat_v7_23_0_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/.idea/libraries/appcompat_v7_23_0_1.xml -------------------------------------------------------------------------------- /android/.idea/libraries/bolts_android_1_1_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/.idea/libraries/bolts_android_1_1_4.xml -------------------------------------------------------------------------------- /android/.idea/libraries/drawee_0_6_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/.idea/libraries/drawee_0_6_1.xml -------------------------------------------------------------------------------- /android/.idea/libraries/fbcore_0_6_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/.idea/libraries/fbcore_0_6_1.xml -------------------------------------------------------------------------------- /android/.idea/libraries/fresco_0_6_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/.idea/libraries/fresco_0_6_1.xml -------------------------------------------------------------------------------- /android/.idea/libraries/imagepipeline_0_6_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/.idea/libraries/imagepipeline_0_6_1.xml -------------------------------------------------------------------------------- /android/.idea/libraries/imagepipeline_okhttp_0_6_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/.idea/libraries/imagepipeline_okhttp_0_6_1.xml -------------------------------------------------------------------------------- /android/.idea/libraries/jackson_core_2_2_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/.idea/libraries/jackson_core_2_2_3.xml -------------------------------------------------------------------------------- /android/.idea/libraries/jsr305_3_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/.idea/libraries/jsr305_3_0_0.xml -------------------------------------------------------------------------------- /android/.idea/libraries/library_2_4_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/.idea/libraries/library_2_4_0.xml -------------------------------------------------------------------------------- /android/.idea/libraries/okhttp_2_4_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/.idea/libraries/okhttp_2_4_0.xml -------------------------------------------------------------------------------- /android/.idea/libraries/okhttp_ws_2_4_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/.idea/libraries/okhttp_ws_2_4_0.xml -------------------------------------------------------------------------------- /android/.idea/libraries/okio_1_5_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/.idea/libraries/okio_1_5_0.xml -------------------------------------------------------------------------------- /android/.idea/libraries/react_native_0_14_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/.idea/libraries/react_native_0_14_0.xml -------------------------------------------------------------------------------- /android/.idea/libraries/recyclerview_v7_23_0_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/.idea/libraries/recyclerview_v7_23_0_1.xml -------------------------------------------------------------------------------- /android/.idea/libraries/support_annotations_23_0_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/.idea/libraries/support_annotations_23_0_1.xml -------------------------------------------------------------------------------- /android/.idea/libraries/support_v4_23_0_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/.idea/libraries/support_v4_23_0_1.xml -------------------------------------------------------------------------------- /android/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/.idea/misc.xml -------------------------------------------------------------------------------- /android/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/.idea/modules.xml -------------------------------------------------------------------------------- /android/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /android/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/.idea/vcs.xml -------------------------------------------------------------------------------- /android/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/.idea/workspace.xml -------------------------------------------------------------------------------- /android/ReboundScrollView.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/ReboundScrollView.iml -------------------------------------------------------------------------------- /android/app/ReboundScrollView.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/app/ReboundScrollView.iml -------------------------------------------------------------------------------- /android/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/app/app.iml -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/jg/zhang/scrollview/.ReboundScrollView.java.un~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/app/src/main/java/com/jg/zhang/scrollview/.ReboundScrollView.java.un~ -------------------------------------------------------------------------------- /android/app/src/main/java/com/jg/zhang/scrollview/.ReboundScrollViewManager.java.un~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/app/src/main/java/com/jg/zhang/scrollview/.ReboundScrollViewManager.java.un~ -------------------------------------------------------------------------------- /android/app/src/main/java/com/jg/zhang/scrollview/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/app/src/main/java/com/jg/zhang/scrollview/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/jg/zhang/scrollview/ReboundScrollView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/app/src/main/java/com/jg/zhang/scrollview/ReboundScrollView.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/jg/zhang/scrollview/ReboundScrollViewManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/app/src/main/java/com/jg/zhang/scrollview/ReboundScrollViewManager.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/jg/zhang/scrollview/ReboundScrollViewPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/app/src/main/java/com/jg/zhang/scrollview/ReboundScrollViewPackage.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/app/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/app/src/main/res/drawable-hdpi/test.jpg -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/test2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/app/src/main/res/drawable-hdpi/test2.jpg -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/test3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/app/src/main/res/drawable-hdpi/test3.jpg -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/app/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/app/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/app/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /android/app/src/main/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/app/src/main/res/menu/main.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/app/src/main/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/app/src/main/res/values-sw720dp-land/dimens.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/app/src/main/res/values-v11/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/app/src/main/res/values-v14/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/import-summary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/import-summary.txt -------------------------------------------------------------------------------- /android/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/android/local.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'ReboundScrollView' 2 | include ':app' 3 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/package.json -------------------------------------------------------------------------------- /screen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/screen.gif -------------------------------------------------------------------------------- /screen2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaxchow/react-native-rebound-scrollview/HEAD/screen2.gif --------------------------------------------------------------------------------