Hao Fu
Results
1
comments of
Hao Fu
I have the same issue, my workaround is to call `scrollToRow` again in the `setState` callback, like: ``` this.listNode.scrollToRow(idx); this.setState({ scrollingToRow: idx }, () => { this.listNode.scrollToRow(idx); }); ```