如何在Flutter中创建垂直滚动的PageView?

时间:2019-10-07 09:53:27

标签: android ios user-interface flutter dart

默认情况下,PageView在水平方向上滚动,但是我需要通过PageView创建垂直可滚动的页面,任何解决方案

1 个答案:

答案 0 :(得分:2)

使用scrollDirection: Axis.vertical

PageView(
    controller: pageViewController,
    scrollDirection: Axis.vertical,
    children: [Page1(), Page2(),],
)