dart 使用fulutter_inappwebview如何删除反弹滚动发光

92dk7w1h  于 2023-07-31  发布在  其他
关注(0)|答案(1)|浏览(109)

我试着用网上讲解的代码,其他的listview可以去掉,但是用Flutter_ Inappwebview插件,打开网页后这个效果就无法去掉了
其他的答案我跟着:Here


的数据
我该怎么办?我只能去掉这个滚动反弹效果

nuypyhwy

nuypyhwy1#

Package 小部件OverscrollIndicatorNotification

NotificationListener<OverscrollIndicatorNotification>(
  onNotification: (OverscrollIndicatorNotification overscroll) {
    overscroll.disallowIndicator();

    return true;
  },
  child: <Widget Here>,
),

字符串

相关问题