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

Ris*_*waj 1 user-interface android ios dart flutter

默认情况下,PageView 在颤动中具有水平滚动,但我需要通过 PageView 创建一个垂直可滚动的页面,任何解决方案?

shb*_*shb 5

scrollDirection: Axis.vertical

PageView(
    controller: pageViewController,
    scrollDirection: Axis.vertical,
    children: [Page1(), Page2(),],
)
Run Code Online (Sandbox Code Playgroud)