scrollToEnd: function()

in deprecated-react-native-listview/index.js [286:297]


  scrollToEnd: function(options?: ?{animated?: boolean}) {
    if (this._scrollComponent) {
      if (this._scrollComponent.scrollToEnd) {
        this._scrollComponent.scrollToEnd(options);
      } else {
        console.warn(
          'The scroll component used by the ListView does not support ' +
            'scrollToEnd. Check the renderScrollComponent prop of your ListView.',
        );
      }
    }
  },