Gathering detailed insights and metrics for q-react-native-keyboard-aware-scroll-view
Gathering detailed insights and metrics for q-react-native-keyboard-aware-scroll-view
Gathering detailed insights and metrics for q-react-native-keyboard-aware-scroll-view
Gathering detailed insights and metrics for q-react-native-keyboard-aware-scroll-view
A ScrollView component that handles keyboard appearance and automatically scrolls to focused TextInput.
npm install q-react-native-keyboard-aware-scroll-view
Typescript
Module System
Node Version
NPM Version
JavaScript (100%)
Total Downloads
1,075
Last Day
1
Last Week
5
Last Month
17
Last Year
189
MIT License
130 Commits
1 Watchers
7 Branches
1 Contributors
Updated on Jul 04, 2018
Latest Version
0.6.1
Package Id
q-react-native-keyboard-aware-scroll-view@0.6.1
Unpacked Size
103.49 kB
Size
29.33 kB
File Count
17
NPM Version
5.6.0
Node Version
8.9.1
Cumulative downloads
Total Downloads
Last Day
0%
1
Compared to previous day
Last Week
0%
5
Compared to previous week
Last Month
21.4%
17
Compared to previous month
Last Year
34%
189
Compared to previous year
2
1
A ScrollView component that handles keyboard appearance and automatically scrolls to focused TextInput
.
v0.4.0
requires RN>=0.48
v0.2.0
requires RN>=0.32.0
.v0.1.2
requires RN>=0.27.2
but you should use 0.2.0
in order to make it work with multiple scroll views.v0.0.7
requires react-native>=0.25.0
.v0.0.6
for older RN versions.Installation can be done through npm
or yarn
:
1npm i react-native-keyboard-aware-scroll-view --save
1yarn add react-native-keyboard-aware-scroll-view
You can use the KeyboardAwareScrollView
, the KeyboardAwareListView
, KeyboardAwareSectionList
or the KeyboardAwareFlatList
components. They accept ScrollView
, ListView
, SectionList
and FlatList
default props respectively and
implement a custom high order componente called KeyboardAwareHOC
to handle keyboard appearance.
The high order component is also available if you want to use it in any other component.
Import react-native-keyboard-aware-scroll-view
and wrap your content inside
it:
1import { KeyboardAwareScrollView } from 'react-native-keyboard-aware-scroll-view'
1<KeyboardAwareScrollView> 2 <View> 3 <TextInput /> 4 </View> 5</KeyboardAwareScrollView>
TextInput
fieldsAs of v0.1.0
, the component auto scrolls to the focused TextInput
😎. For versions v0.0.7
and older you can do the following.
TextInput
In order to scroll to any TextInput
field, you can use the built-in method scrollToFocusedInput
. Example:
1_scrollToInput (reactNode: any) { 2 // Add a 'scroll' ref to your ScrollView 3 this.scroll.scrollToFocusedInput(reactNode) 4}
1<KeyboardAwareScrollView innerRef={ref => {this.scroll = ref}}> 2 <View> 3 <TextInput onFocus={(event: Event) => { 4 // `bind` the function if you're using ES6 classes 5 this._scrollToInput(ReactNative.findNodeHandle(event.target)) 6 }} /> 7 </View> 8</KeyboardAwareScrollView>
There's another built-in function that lets you programatically scroll to any position of the scroll view:
1this.scroll.props.scrollToPosition(0, 0)
You can register to ScrollViewResponder
events onKeyboardWillShow
and onKeyboardWillHide
:
1<KeyboardAwareScrollView 2 onKeyboardWillShow={(frames: Object) => { 3 console.log('Keyboard event', frames) 4 }}> 5 <View> 6 <TextInput /> 7 </View> 8</KeyboardAwareScrollView>
First, Android natively has this feature, you can easily enable it by setting windowSoftInputMode
in AndroidManifest.xml
. Check here.
But if you want to use feature like extraHeight
, you need to enable Android Support with the following steps:
0.46
or above.windowSoftInputMode
to adjustPan
in AndroidManifest.xml
.enableOnAndroid
property to true
.Android Support is not perfect, here is the supported list:
Prop | Android Support |
---|---|
viewIsInsideTabBar | Yes |
resetScrollToCoords | Yes |
enableAutomaticScroll | Yes |
extraHeight | Yes |
extraScrollHeight | Yes |
enableResetScrollToCoords | Yes |
keyboardOpeningTime | No |
All the ScrollView
/ListView
/FlatList
props will be passed.
Prop | Type | Description |
---|---|---|
innerRef | Function | Catch the reference of the component. |
viewIsInsideTabBar | boolean | Adds an extra offset that represents the TabBarIOS height. |
resetScrollToCoords | Object: {x: number, y: number} | Coordinates that will be used to reset the scroll when the keyboard hides. |
enableAutomaticScroll | boolean | When focus in TextInput will scroll the position, default is enabled. |
extraHeight | number | Adds an extra offset when focusing the TextInput s. |
extraScrollHeight | number | Adds an extra offset to the keyboard. Useful if you want to stick elements above the keyboard. |
enableResetScrollToCoords | boolean | Lets the user enable or disable automatic resetScrollToCoords. |
keyboardOpeningTime | number | Sets the delay time before scrolling to new position, default is 250 |
enableOnAndroid | boolean | Enable Android Support |
Use innerRef
to get the component reference and use this.scrollRef.props
to access these methods.
Method | Parameter | Description |
---|---|---|
getScrollResponder | void | Get ScrollResponder |
scrollToPosition | x: number, y: number, animated: bool = true | Scroll to specific position with or without animation. |
scrollToEnd | animated?: bool = true | Scroll to end with or without animation. |
scrollIntoView | element: React.Element<*>, options: { getScrollPosition: ?(parentLayout, childLayout, contentOffset) => { x: number, y: number, animated: boolean } } | Scrolls an element inside a KeyboardAwareScrollView into view. |
Enabling any component to be keyboard-aware is very easy. Take a look at the code of KeyboardAwareListView
:
1/* @flow */ 2 3import { ListView } from 'react-native' 4import listenToKeyboardEvents from './KeyboardAwareHOC' 5 6export default listenToKeyboardEvents(ListView)
MIT.
Álvaro Medina Ballester <amedina at apsl.net>
Built with 💛 by APSL.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
no SAST tool detected
Details
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
22 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-03-24
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More