xuelongqy / flutter_easy_refresh

A flutter widget that provides pull-down refresh and pull-up load.
https://xuelongqy.github.io/flutter_easy_refresh/
MIT License
3.89k stars 633 forks source link

关于EasyRefresh的fit参数 #708

Closed zkqmylove closed 1 year ago

zkqmylove commented 1 year ago

我注意到EasyRefreshfit参数并未有实际作用,在其build方法的最后有一个Stack控件,可否将EasyRefreshfit给传给Stackfit

 @override
 Widget build(BuildContext context) {

    .... 代码省略

    return ClipPath(
      clipBehavior: widget.clipBehavior,
      child: Stack(
        clipBehavior: Clip.none,
        fit: StackFit.loose,      // 这里被写死了,可否将EasyRefresh的fit传入?
        children: children,
      ),
    );
 }
xuelongqy commented 1 year ago

非常感谢,指出问题。会在下个版本修复

xuelongqy commented 1 year ago

3.3.1+1已修复

zkqmylove commented 1 year ago

3.3.1+1已修复

非常感谢😊