Flutter: ListView disable scrolling with touchscreen

前端 未结 5 451
逝去的感伤
逝去的感伤 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:02

    Worked for me

     ListView.builder(
        scrollDirection: Axis.vertical,
        shrinkWrap: true,
        physics: const ClampingScrollPhysics(),
    ...
    

提交回复
热议问题