嘿,我有一个Flutter应用,其中main.dart中listview覆盖了所有页面。 在另一页上,我也有带有listview的列,当我在该列表上使用RefreshIndicator时,除了将列表Physic设置为AlwaysScrollablePhysc之外,它均不起作用,但是如果将physc设置为AlwaysScrollablePhysc,则该列表不可滚动, 有人可以帮忙吗?
RefreshIndicator(
onRefresh: () {},
child: ListView.builder(
physics: AlwaysScrollableScrollPhysics(),
controller: _scrollController,
shrinkWrap: true,
itemCount: list == null ? 0 : list.length,
itemBuilder: (context, i) {