Answers for "react native keyboard aware scrollview"

5

react native hide scroll indicator

<ScrollView
  showsVerticalScrollIndicator ={false}
  showsHorizontalScrollIndicator={false}
 />
Posted by: Guest on December-13-2020
0

auto scroll to view react-native

<ScrollView ref={view => this._scrollView = view} />
And set the scroll position elsewhere with:

scrollToRow(itemIndex) {
  this._scrollView.scrollTo({y:itemIndex * ROW_HEIGHT});
}
Posted by: Guest on September-17-2020

Code answers related to "react native keyboard aware scrollview"

Code answers related to "Javascript"

Browse Popular Code Answers by Language