如何在ListView上检测滚动位置的中间或四分之三?我想在滚动位置到达中间或四分之三后获取数据。怎么做?
目前,我在listView的末尾获取数据。

_scrollController.addListener(scrollListener);

  void scrollListener(){
    if (_scrollController.position.pixels == _scrollController.position.maxScrollExtent) {
      getMoreData();
    }
  }

最佳答案

我认为这会工作..

_scrollController.addListener(scrollListener);

  void scrollListener(){
    if (_scrollController.position.pixels == _scrollController.position.maxScrollExtent * 0.75) {
      getMoreData();
    }
  }

关于flutter - 如何检测Flutter上ListView上滚动位置的中间或四分之三来延迟加载数据?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/64150468/

10-11 01:15