Is it possible to keep a ScrollView scrolled to the bottom?

前端 未结 16 1299
误落风尘
误落风尘 2020-12-04 17:13

For a chat-like app, I want to keep a ScrollView component scrolled to the bottom, because newest messages appear under the older ones. Can we adjust the scroll

16条回答
  •  离开以前
    2020-12-04 17:54

    try this solution

    xcode 10.0

    RN: 56.0.0

     this.refs.scrollView.scrollTo({y:height})}>   // OR height -  width
    

提交回复
热议问题