草庐IT

javascript - react native ListView scrollToEnd 它不起作用

coder 2024-05-13 原文

我使用了 ListView 的 scrollToEnd,但它不起作用,但它适用于 scrollTo。我应该如何处理它。

最佳答案

有一个解决方法,将其包装在 setTimeout 中,如下所示:

componentDidMount() {
  setTimeout(() => {
    this.refs.dateList.scrollToEnd();
  }, 50);
}

关于javascript - react native ListView scrollToEnd 它不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42313308/

有关javascript - react native ListView scrollToEnd 它不起作用的更多相关文章

随机推荐