颤振列表视图不会在定位小部件中滚动

时间:2021-05-29 11:48:43

标签: flutter dart

考虑以下几点:

 Positioned(
                    left: 0,
                    top: 100,
                    right: 0,
                    height: 100,
                    child: Container(
                      padding: EdgeInsets.all(12),
                      color: Colors.black26.withOpacity(0.3),
                      child: ListView.builder(
                          itemCount: 100,
                          shrinkWrap: true,
                          physics: AlwaysScrollableScrollPhysics(),
                          scrollDirection: Axis.horizontal,
                          itemBuilder: (context, index) {
                            return Text(
                              index.toString(),
                              style: kLargeTitle,
                            );
                          }),
                    ),
                  )

我发现无法滚动,您有什么想法吗?

2 个答案:

答案 0 :(得分:1)

我不确定,但您是否尝试过将其包装在 Stack 中?我认为在这种情况下,不需要 AlwaysScrollableScrollPhysics()。

答案 1 :(得分:0)

尝试使用 physics: ScrollPhysics() 而不是 physics: AlwaysScrollableScrollPhysics()