monterosalondon / react-native-parallax-scroll

Parallax scroll view for react-native
MIT License
554 stars 62 forks source link

innerRef not working on RN 0.63.2, React version 16.13.1. #49

Open Giosanu opened 4 years ago

Giosanu commented 4 years ago
  _ref = ref => {
    if (typeof this.props.innerRef === 'function' && ref && ref._component) {
      this.props.innerRef(ref._component);
    }
  };

I believe this function doesn't work anymore on the newest version of RN...

It worked just fine on 60.5, but now I can't manage to get the scrollable component reference anymore..

I need to access the scrollToEnd function..