flutter_easy_refresh icon indicating copy to clipboard operation
flutter_easy_refresh copied to clipboard

实现列表滚动收起键盘时,第一次无法触发onLoad方法,再次滑动才会触发

Open islinjj opened this issue 1 year ago • 0 comments

我想要实现列表滚动时收起键盘, 但是在收起键盘后第一次无法触发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: ..., ), ), )

islinjj avatar Sep 10 '24 07:09 islinjj