React Native ListView scrollToEnd it doesn't work

前端 未结 4 1516
半阙折子戏
半阙折子戏 2021-01-04 05:40

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

4条回答
  •  被撕碎了的回忆
    2021-01-04 05:43

    This this worked for me.

     (this.contentComponent = c)}>
    ....Any code
    
    

    This allows you to to use the scrollToPosition(0) function like

    this.contentComponent._root.scrollToPosition(0);
    

提交回复
热议问题