嘿,我有一个应用程序,其中所有页面都覆盖在main.dart中的listview . 在其他页面上我也有listview里面的列,当我在列表上使用RefreshIndicator时它不起作用,除了列表物理设置为AlwaysScrollablePhysc,但如果我将physc设置为AlwaysScrollablePhysc列表不是Scrollable,任何人都可以帮忙吗?

RefreshIndicator(
  onRefresh: () {},
  child: ListView.builder(
    physics: AlwaysScrollableScrollPhysics(),
    controller: _scrollController,
    shrinkWrap: true,
    itemCount: list == null ? 0 : list.length,
    itemBuilder: (context, i) {