You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem:
When trying to use scrollTo function using ref, throws following error TypeError: undefined is not an object (evaluating 'this.refs[SCROLLVIEW_REF]._component.getScrollResponder')
Reason: getScrollResponder() { return this.refs[SCROLLVIEW_REF]._component.getScrollResponder() }
Above function uses _component to access the ref which is not there, hence throwing the error.
The text was updated successfully, but these errors were encountered:
Env:
RN : 0.63^
Problem:
When trying to use scrollTo function using ref, throws following error
TypeError: undefined is not an object (evaluating 'this.refs[SCROLLVIEW_REF]._component.getScrollResponder')
Reason:
getScrollResponder() { return this.refs[SCROLLVIEW_REF]._component.getScrollResponder() }
Above function uses _component to access the ref which is not there, hence throwing the error.
The text was updated successfully, but these errors were encountered: