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
switch (_loadState) { case LoadState.loading: current = Row( mainAxisAlignment: MainAxisAlignment.center, crossAxisAlignment: CrossAxisAlignment.center, children: [ Center( child: _getIndicator(context), ) , SizedBox( width: 5.0, ), Text("loading...") ], ); break;
你的源码是这样,假如我图片预览背景是黑色的,那么 “loading。。。”这几个字显示不出来,就只能看到CupertinoActivityIndicator 骗左,建议 loading样式可从外部传进去一个widget
The text was updated successfully, but these errors were encountered:
建议读完文档再提问题
Sorry, something went wrong.
No branches or pull requests
switch (_loadState) {
case LoadState.loading:
current = Row(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Center(
child: _getIndicator(context),
) ,
SizedBox(
width: 5.0,
),
Text("loading...")
],
);
break;
你的源码是这样,假如我图片预览背景是黑色的,那么 “loading。。。”这几个字显示不出来,就只能看到CupertinoActivityIndicator 骗左,建议 loading样式可从外部传进去一个widget
The text was updated successfully, but these errors were encountered: