fluttercandies/flutter_scrollview_observer

关于listview.builder的支持问题

Closed this issue · 3 comments

插件目前是支持listview.builder么,我跑例子把listview.separated改成listview.builder跳转的时候会有偏差 @LinXunFeng

ListView _buildListView() {
  // return ListView.separated(
  return ListView.builder(
    padding: const EdgeInsets.only(top: 1000, bottom: 1000),
    controller: scrollController,
    itemBuilder: (ctx, index) {
      return _buildListItemView(index);
    },
    // separatorBuilder: (ctx, index) {
    //   return _buildSeparatorView();
    // },
    itemCount: 500,
  );
}

支持 ListView.builder 的,上述代码是将示例中 ListView.separated 调整为 ListView.builder,测试正常

感谢反馈,请更新使用 1.6.1 版本

scrollview_observer: ^1.6.1