flutter_easy_refresh
flutter_easy_refresh copied to clipboard
实现列表滚动收起键盘时,第一次无法触发onLoad方法,再次滑动才会触发
我想要实现列表滚动时收起键盘, 但是在收起键盘后第一次无法触发onLoading方法,再次滑动才会
EasyRefresh( header: const CupertinoHeader(), onRefresh: _onRefresh, footer: const CupertinoFooter( infiniteOffset: null, ), onLoad: _onLoading, controller: refreshController, child: GestureDetector( behavior: HitTestBehavior.translucent, onPanDown: () => Utils.hideKeyboard(), child: ListView( children: ..., ), ), )