├── .gitignore ├── LICENSE ├── README.md ├── SmartScrollView.js ├── SuperScrollingFormExample ├── .flowconfig ├── .gitignore ├── .watchmanconfig ├── Example.js ├── android │ ├── app │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ ├── react.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── superscrollingformexample │ │ │ │ └── MainActivity.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 │ └── settings.gradle ├── exampleInAction.gif ├── index.android.js ├── index.ios.js ├── ios │ ├── SuperScrollingFormExample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── SuperScrollingFormExample.xcscheme │ ├── SuperScrollingFormExample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── SuperScrollingFormExampleTests │ │ ├── Info.plist │ │ └── SuperScrollingFormExampleTests.m └── package.json ├── complexFormExample.gif ├── complexFormExample.js └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilaravi/react-native-smart-scroll-view/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilaravi/react-native-smart-scroll-view/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilaravi/react-native-smart-scroll-view/HEAD/README.md -------------------------------------------------------------------------------- /SmartScrollView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilaravi/react-native-smart-scroll-view/HEAD/SmartScrollView.js -------------------------------------------------------------------------------- /SuperScrollingFormExample/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilaravi/react-native-smart-scroll-view/HEAD/SuperScrollingFormExample/.flowconfig -------------------------------------------------------------------------------- /SuperScrollingFormExample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilaravi/react-native-smart-scroll-view/HEAD/SuperScrollingFormExample/.gitignore -------------------------------------------------------------------------------- /SuperScrollingFormExample/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /SuperScrollingFormExample/Example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilaravi/react-native-smart-scroll-view/HEAD/SuperScrollingFormExample/Example.js -------------------------------------------------------------------------------- /SuperScrollingFormExample/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilaravi/react-native-smart-scroll-view/HEAD/SuperScrollingFormExample/android/app/build.gradle -------------------------------------------------------------------------------- /SuperScrollingFormExample/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilaravi/react-native-smart-scroll-view/HEAD/SuperScrollingFormExample/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /SuperScrollingFormExample/android/app/react.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilaravi/react-native-smart-scroll-view/HEAD/SuperScrollingFormExample/android/app/react.gradle -------------------------------------------------------------------------------- /SuperScrollingFormExample/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilaravi/react-native-smart-scroll-view/HEAD/SuperScrollingFormExample/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /SuperScrollingFormExample/android/app/src/main/java/com/superscrollingformexample/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilaravi/react-native-smart-scroll-view/HEAD/SuperScrollingFormExample/android/app/src/main/java/com/superscrollingformexample/MainActivity.java -------------------------------------------------------------------------------- /SuperScrollingFormExample/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilaravi/react-native-smart-scroll-view/HEAD/SuperScrollingFormExample/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /SuperScrollingFormExample/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilaravi/react-native-smart-scroll-view/HEAD/SuperScrollingFormExample/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /SuperScrollingFormExample/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilaravi/react-native-smart-scroll-view/HEAD/SuperScrollingFormExample/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SuperScrollingFormExample/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilaravi/react-native-smart-scroll-view/HEAD/SuperScrollingFormExample/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SuperScrollingFormExample/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilaravi/react-native-smart-scroll-view/HEAD/SuperScrollingFormExample/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /SuperScrollingFormExample/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilaravi/react-native-smart-scroll-view/HEAD/SuperScrollingFormExample/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /SuperScrollingFormExample/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilaravi/react-native-smart-scroll-view/HEAD/SuperScrollingFormExample/android/build.gradle -------------------------------------------------------------------------------- /SuperScrollingFormExample/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilaravi/react-native-smart-scroll-view/HEAD/SuperScrollingFormExample/android/gradle.properties -------------------------------------------------------------------------------- /SuperScrollingFormExample/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilaravi/react-native-smart-scroll-view/HEAD/SuperScrollingFormExample/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /SuperScrollingFormExample/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilaravi/react-native-smart-scroll-view/HEAD/SuperScrollingFormExample/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /SuperScrollingFormExample/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilaravi/react-native-smart-scroll-view/HEAD/SuperScrollingFormExample/android/gradlew -------------------------------------------------------------------------------- /SuperScrollingFormExample/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilaravi/react-native-smart-scroll-view/HEAD/SuperScrollingFormExample/android/gradlew.bat -------------------------------------------------------------------------------- /SuperScrollingFormExample/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'SuperScrollingFormExample' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /SuperScrollingFormExample/exampleInAction.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilaravi/react-native-smart-scroll-view/HEAD/SuperScrollingFormExample/exampleInAction.gif -------------------------------------------------------------------------------- /SuperScrollingFormExample/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilaravi/react-native-smart-scroll-view/HEAD/SuperScrollingFormExample/index.android.js -------------------------------------------------------------------------------- /SuperScrollingFormExample/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilaravi/react-native-smart-scroll-view/HEAD/SuperScrollingFormExample/index.ios.js -------------------------------------------------------------------------------- /SuperScrollingFormExample/ios/SuperScrollingFormExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilaravi/react-native-smart-scroll-view/HEAD/SuperScrollingFormExample/ios/SuperScrollingFormExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SuperScrollingFormExample/ios/SuperScrollingFormExample.xcodeproj/xcshareddata/xcschemes/SuperScrollingFormExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilaravi/react-native-smart-scroll-view/HEAD/SuperScrollingFormExample/ios/SuperScrollingFormExample.xcodeproj/xcshareddata/xcschemes/SuperScrollingFormExample.xcscheme -------------------------------------------------------------------------------- /SuperScrollingFormExample/ios/SuperScrollingFormExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilaravi/react-native-smart-scroll-view/HEAD/SuperScrollingFormExample/ios/SuperScrollingFormExample/AppDelegate.h -------------------------------------------------------------------------------- /SuperScrollingFormExample/ios/SuperScrollingFormExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilaravi/react-native-smart-scroll-view/HEAD/SuperScrollingFormExample/ios/SuperScrollingFormExample/AppDelegate.m -------------------------------------------------------------------------------- /SuperScrollingFormExample/ios/SuperScrollingFormExample/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilaravi/react-native-smart-scroll-view/HEAD/SuperScrollingFormExample/ios/SuperScrollingFormExample/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /SuperScrollingFormExample/ios/SuperScrollingFormExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilaravi/react-native-smart-scroll-view/HEAD/SuperScrollingFormExample/ios/SuperScrollingFormExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SuperScrollingFormExample/ios/SuperScrollingFormExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilaravi/react-native-smart-scroll-view/HEAD/SuperScrollingFormExample/ios/SuperScrollingFormExample/Info.plist -------------------------------------------------------------------------------- /SuperScrollingFormExample/ios/SuperScrollingFormExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilaravi/react-native-smart-scroll-view/HEAD/SuperScrollingFormExample/ios/SuperScrollingFormExample/main.m -------------------------------------------------------------------------------- /SuperScrollingFormExample/ios/SuperScrollingFormExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilaravi/react-native-smart-scroll-view/HEAD/SuperScrollingFormExample/ios/SuperScrollingFormExampleTests/Info.plist -------------------------------------------------------------------------------- /SuperScrollingFormExample/ios/SuperScrollingFormExampleTests/SuperScrollingFormExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilaravi/react-native-smart-scroll-view/HEAD/SuperScrollingFormExample/ios/SuperScrollingFormExampleTests/SuperScrollingFormExampleTests.m -------------------------------------------------------------------------------- /SuperScrollingFormExample/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilaravi/react-native-smart-scroll-view/HEAD/SuperScrollingFormExample/package.json -------------------------------------------------------------------------------- /complexFormExample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilaravi/react-native-smart-scroll-view/HEAD/complexFormExample.gif -------------------------------------------------------------------------------- /complexFormExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilaravi/react-native-smart-scroll-view/HEAD/complexFormExample.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilaravi/react-native-smart-scroll-view/HEAD/package.json --------------------------------------------------------------------------------