├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── example ├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── keyboardawarescrollview │ │ │ │ ├── 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 │ └── settings.gradle ├── app.android.js ├── app.ios.js ├── app.json ├── index.js ├── ios │ ├── KeyboardAwareScrollView-tvOS │ │ └── Info.plist │ ├── KeyboardAwareScrollView-tvOSTests │ │ └── Info.plist │ ├── KeyboardAwareScrollView.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── KeyboardAwareScrollView-tvOS.xcscheme │ │ │ └── KeyboardAwareScrollView.xcscheme │ ├── KeyboardAwareScrollView.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── KeyboardAwareScrollView │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ ├── KeyboardAwareScrollViewTests │ │ ├── Info.plist │ │ └── KeyboardAwareScrollViewTests.m │ ├── Podfile │ └── Podfile.lock ├── package-lock.json └── package.json ├── index.js ├── package.json └── src ├── KeyboardAwareBase.js ├── KeyboardAwareListView.js └── KeyboardAwareScrollView.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/README.md -------------------------------------------------------------------------------- /example/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/.babelrc -------------------------------------------------------------------------------- /example/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/.buckconfig -------------------------------------------------------------------------------- /example/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/.flowconfig -------------------------------------------------------------------------------- /example/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /example/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/android/app/BUCK -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/android/app/build_defs.bzl -------------------------------------------------------------------------------- /example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/android/app/debug.keystore -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/keyboardawarescrollview/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/android/app/src/main/java/com/keyboardawarescrollview/MainActivity.java -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/keyboardawarescrollview/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/android/app/src/main/java/com/keyboardawarescrollview/MainApplication.java -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/app.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/app.android.js -------------------------------------------------------------------------------- /example/app.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/app.ios.js -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/app.json -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- 1 | require('./app'); 2 | -------------------------------------------------------------------------------- /example/ios/KeyboardAwareScrollView-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/ios/KeyboardAwareScrollView-tvOS/Info.plist -------------------------------------------------------------------------------- /example/ios/KeyboardAwareScrollView-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/ios/KeyboardAwareScrollView-tvOSTests/Info.plist -------------------------------------------------------------------------------- /example/ios/KeyboardAwareScrollView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/ios/KeyboardAwareScrollView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/KeyboardAwareScrollView.xcodeproj/xcshareddata/xcschemes/KeyboardAwareScrollView-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/ios/KeyboardAwareScrollView.xcodeproj/xcshareddata/xcschemes/KeyboardAwareScrollView-tvOS.xcscheme -------------------------------------------------------------------------------- /example/ios/KeyboardAwareScrollView.xcodeproj/xcshareddata/xcschemes/KeyboardAwareScrollView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/ios/KeyboardAwareScrollView.xcodeproj/xcshareddata/xcschemes/KeyboardAwareScrollView.xcscheme -------------------------------------------------------------------------------- /example/ios/KeyboardAwareScrollView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/ios/KeyboardAwareScrollView.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/KeyboardAwareScrollView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/ios/KeyboardAwareScrollView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/KeyboardAwareScrollView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/ios/KeyboardAwareScrollView/AppDelegate.h -------------------------------------------------------------------------------- /example/ios/KeyboardAwareScrollView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/ios/KeyboardAwareScrollView/AppDelegate.m -------------------------------------------------------------------------------- /example/ios/KeyboardAwareScrollView/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/ios/KeyboardAwareScrollView/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /example/ios/KeyboardAwareScrollView/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/ios/KeyboardAwareScrollView/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/KeyboardAwareScrollView/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/ios/KeyboardAwareScrollView/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /example/ios/KeyboardAwareScrollView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/ios/KeyboardAwareScrollView/Info.plist -------------------------------------------------------------------------------- /example/ios/KeyboardAwareScrollView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/ios/KeyboardAwareScrollView/main.m -------------------------------------------------------------------------------- /example/ios/KeyboardAwareScrollViewTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/ios/KeyboardAwareScrollViewTests/Info.plist -------------------------------------------------------------------------------- /example/ios/KeyboardAwareScrollViewTests/KeyboardAwareScrollViewTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/ios/KeyboardAwareScrollViewTests/KeyboardAwareScrollViewTests.m -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/package-lock.json -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/example/package.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/package.json -------------------------------------------------------------------------------- /src/KeyboardAwareBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/src/KeyboardAwareBase.js -------------------------------------------------------------------------------- /src/KeyboardAwareListView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/src/KeyboardAwareListView.js -------------------------------------------------------------------------------- /src/KeyboardAwareScrollView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-keyboard-aware-scrollview/HEAD/src/KeyboardAwareScrollView.js --------------------------------------------------------------------------------