Flutter: ListView disable scrolling with touchscreen

前端 未结 5 529
逝去的感伤
逝去的感伤 2020-12-24 00:11

Is it possible to let a ListView only be scrollable with the ScrollController and not with the touchscreen?

5条回答
  •  自闭症患者
    2020-12-24 01:00

    Conditional statement for enable and disable scrollview.

    physics: chckSwitch ? const  NeverScrollableScrollPhysics() : const AlwaysScrollableScrollPhysics(),
    

提交回复
热议问题