1. 程式人生 > >react native ScrollView滾動不起作用

react native ScrollView滾動不起作用



             在做頁面初始化時, 想ScrollView跳轉到指定的位置,結果發現程式碼執行了,卻沒有跳到指定的位置,程式碼如下。

        componentDidMount(){
              scrollView.scrollTo({x: 0, y: 0, animated: true})
        }
  
       經過大量查詢各種資料,發現在ScrollView初始化時有個動畫效果,只有動畫結束了,呼叫scrollView.scrollTo才有效果,官方資料沒有說明這點
我們可以這樣做,在componentDidMount()里加一個延時操作就可以了。其實Flatlist也有同樣的問題。解決辦法一樣
   
        componentDidMount() {
          this.fristTime = setTimeout(() => {
          ScrollView.scrollTo({x: 0, y: 0, animated: true})
         }, 0)
        }