美文网首页
flutter ListView 在macOS 上滚动无效 解决

flutter ListView 在macOS 上滚动无效 解决

作者: Faith_K | 来源:发表于2024-02-02 15:51 被阅读0次

    flutter ListView 在macOS 上滚动无效 解决方案
    https://github.com/flutter/flutter/pull/81569

      return ScrollConfiguration(
         behavior: ScrollConfiguration.of(context).copyWith(
           dragDevices: {
             PointerDeviceKind.mouse,
             PointerDeviceKind.touch,
           },
         ),
         child: ListView.builder(
           // primary: true,
           itemBuilder: _itemBuilder,
           itemCount: 100,
         ),
       );
    

    相关文章

      网友评论

          本文标题:flutter ListView 在macOS 上滚动无效 解决

          本文链接:https://www.haomeiwen.com/subject/ufdtadtx.html