I have a TextInput inside a ScrollView.
The scroll isn\'t working when the TextInput is on focus. This problem is only affecting Android.
I handle in different ways to each platform (in Ios focus to inputText is enough,
don't forget to put this.scrollViewRef
ref inside ScrollView
that wrap inputText and put ref index the inputText
if (Platform.OS == 'android') {
this.inputRefs[field].measure((w, h, px, py, xPage, yPage) => {
this.scrollViewRef.scrollTo({ x: 0, y: yPage, animated: true })
this.inputRefs[field].focus()
})
}
this.inputRefs[field].focus()