【发布时间】:2023-04-09 14:46:01
【问题描述】:
有谁知道是否有办法删除用户到达项目末尾时出现的 PageView 颜色? 这是一张描述我的意思的图片 Click here
PageView.builder(
physics: NeverScrollableScrollPhysics(),
scrollDirection: Axis.vertical,
controller: _controller,
itemCount: 4,
itemBuilder: (BuildContext context, int index) {
_isValid = false;
return [
SizedBox.expand(...),
SizedBox.expand(...),
SizedBox.expand(...),
SizedBox.expand(...),
][index];
},
)
我在这里找到了完整而正确的答案:How to remove scroll glow?
【问题讨论】: