├── .babelrc ├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── .npmignore ├── Demo.gif ├── Example ├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .npmignore ├── .watchmanconfig ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ ├── 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 ├── app.json ├── app │ └── Example.js ├── index.android.js ├── index.ios.js ├── ios │ ├── example-tvOS │ │ └── Info.plist │ ├── example-tvOSTests │ │ └── Info.plist │ ├── example.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── example-tvOS.xcscheme │ │ │ └── example.xcscheme │ ├── example │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── exampleTests │ │ ├── Info.plist │ │ └── exampleTests.m ├── package.json └── yarn.lock ├── LICENSE ├── README.md ├── __tests__ ├── ScrollViewSmart.test.js └── __snapshots__ │ └── ScrollViewSmart.test.js.snap ├── circle.yml ├── index.js ├── jsconfig.json ├── lib └── ScrollViewSmart.js ├── package.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/.npmignore -------------------------------------------------------------------------------- /Demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/Demo.gif -------------------------------------------------------------------------------- /Example/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } -------------------------------------------------------------------------------- /Example/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/Example/.buckconfig -------------------------------------------------------------------------------- /Example/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/Example/.flowconfig -------------------------------------------------------------------------------- /Example/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /Example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/Example/.gitignore -------------------------------------------------------------------------------- /Example/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/Example/.npmignore -------------------------------------------------------------------------------- /Example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /Example/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/Example/android/app/BUCK -------------------------------------------------------------------------------- /Example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/Example/android/app/build.gradle -------------------------------------------------------------------------------- /Example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/Example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /Example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/Example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Example/android/app/src/main/java/com/example/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/Example/android/app/src/main/java/com/example/MainActivity.java -------------------------------------------------------------------------------- /Example/android/app/src/main/java/com/example/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/Example/android/app/src/main/java/com/example/MainApplication.java -------------------------------------------------------------------------------- /Example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/Example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/Example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/Example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/Example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/Example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/Example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/Example/android/build.gradle -------------------------------------------------------------------------------- /Example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/Example/android/gradle.properties -------------------------------------------------------------------------------- /Example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/Example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/Example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/Example/android/gradlew -------------------------------------------------------------------------------- /Example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/Example/android/gradlew.bat -------------------------------------------------------------------------------- /Example/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/Example/android/keystores/BUCK -------------------------------------------------------------------------------- /Example/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/Example/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /Example/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'example' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /Example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/Example/app.json -------------------------------------------------------------------------------- /Example/app/Example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/Example/app/Example.js -------------------------------------------------------------------------------- /Example/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/Example/index.android.js -------------------------------------------------------------------------------- /Example/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/Example/index.ios.js -------------------------------------------------------------------------------- /Example/ios/example-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/Example/ios/example-tvOS/Info.plist -------------------------------------------------------------------------------- /Example/ios/example-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/Example/ios/example-tvOSTests/Info.plist -------------------------------------------------------------------------------- /Example/ios/example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/Example/ios/example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/ios/example.xcodeproj/xcshareddata/xcschemes/example-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/Example/ios/example.xcodeproj/xcshareddata/xcschemes/example-tvOS.xcscheme -------------------------------------------------------------------------------- /Example/ios/example.xcodeproj/xcshareddata/xcschemes/example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/Example/ios/example.xcodeproj/xcshareddata/xcschemes/example.xcscheme -------------------------------------------------------------------------------- /Example/ios/example/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/Example/ios/example/AppDelegate.h -------------------------------------------------------------------------------- /Example/ios/example/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/Example/ios/example/AppDelegate.m -------------------------------------------------------------------------------- /Example/ios/example/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/Example/ios/example/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/ios/example/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/Example/ios/example/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/ios/example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/Example/ios/example/Info.plist -------------------------------------------------------------------------------- /Example/ios/example/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/Example/ios/example/main.m -------------------------------------------------------------------------------- /Example/ios/exampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/Example/ios/exampleTests/Info.plist -------------------------------------------------------------------------------- /Example/ios/exampleTests/exampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/Example/ios/exampleTests/exampleTests.m -------------------------------------------------------------------------------- /Example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/Example/package.json -------------------------------------------------------------------------------- /Example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/Example/yarn.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/ScrollViewSmart.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/__tests__/ScrollViewSmart.test.js -------------------------------------------------------------------------------- /__tests__/__snapshots__/ScrollViewSmart.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/__tests__/__snapshots__/ScrollViewSmart.test.js.snap -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/circle.yml -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/index.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/jsconfig.json -------------------------------------------------------------------------------- /lib/ScrollViewSmart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/lib/ScrollViewSmart.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bolket/react-native-scrollview-smart/HEAD/yarn.lock --------------------------------------------------------------------------------