/** * Provides implementation of commands supported by {@link ReactScrollViewManager} */ @Override public void receiveCommand( RecyclerViewBackedScrollView view, int commandId, @Nullable ReadableArray args) { ReactScrollViewCommandHelper.receiveCommand(this, view, commandId, args); }
@Override public void scrollTo( RecyclerViewBackedScrollView scrollView, ReactScrollViewCommandHelper.ScrollToCommandData data) { scrollView.scrollTo(data.mDestX, data.mDestY, data.mAnimated); }