React Native ListView scrollToEnd它不起作用 [英] React Native ListView scrollToEnd it doesn't work

查看:798
本文介绍了React Native ListView scrollToEnd它不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用ListView的 scrollToEnd ,但它不起作用,但它适用于 scrollTo 。我应该怎么做才能解决这个问题。

I use the ListView's scrollToEnd, but it doesn't work, but it worked for scrollTo. What should I do to deal with it.

推荐答案

有一种解决方法,将其包装在 setTimeout 如下:

There is a workaround, wrap it in a setTimeout like so:

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

这篇关于React Native ListView scrollToEnd它不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆