We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
我注意到EasyRefresh中fit参数并未有实际作用,在其build方法的最后有一个Stack控件,可否将EasyRefresh的fit给传给Stack的fit?
EasyRefresh
fit
build
Stack
@override Widget build(BuildContext context) { .... 代码省略 return ClipPath( clipBehavior: widget.clipBehavior, child: Stack( clipBehavior: Clip.none, fit: StackFit.loose, // 这里被写死了,可否将EasyRefresh的fit传入? children: children, ), ); }
The text was updated successfully, but these errors were encountered:
非常感谢,指出问题。会在下个版本修复
Sorry, something went wrong.
fix: fit parameter is invalid (#708)
79fbd37
3.3.1+1已修复
非常感谢😊
No branches or pull requests
我注意到
EasyRefresh
中fit
参数并未有实际作用,在其build
方法的最后有一个Stack
控件,可否将EasyRefresh
的fit
给传给Stack
的fit
?The text was updated successfully, but these errors were encountered: