首页 > 解决方案 > 如何在 GridView 中禁用滚动?

问题描述

我有一个 GridView,其父级是ListView. 如何禁用滚动GridView以便用户可以滚动 ListView?即使内容已完全呈现,我也无法在 GridView 中找到任何属性来禁用滚动。

标签: flutter

解决方案


我认为您可以通过如下设置主要属性来禁用它:

GridView.count(
     shrinkWrap: true,
     primary: true,
     children: <Widget>[],
     // ...
)

或者,如果您想完全禁用它:

hysics: new NeverScrollableScrollPhysics()

推荐阅读