我在登录时已在我的应用程序中集成了CircularProgressIndicator。该指示器可根据需要显示,但隐藏了我的登录屏幕,并带有白色覆盖物。我想使其背景透明而不是白色。我试图提供CircularProgressIndicator的背景颜色,但没有做任何更改。这是我的代码:
child: !_isLoading ? _loginScreen(loginBloc.state) : Center(
child: const SizedBox(
width: 40,
height: 40,
child: CircularProgressIndicator(),
),
)
谢谢。
答案 0 :(得分:0)
您可以将const str = "hello world"
const one = str.split(" ")
console.log(one) // ["hello", "world"]
的子项使用不同的不透明度。
例如
const str = "Hello."
["Hello", "."] // I need this output
如果您需要有效的解决方案,我会在https://github.com/yagnyam-in/proxy-flutter/blob/master/lib/widgets/loading.dart,https://github.com/yagnyam-in/proxy-flutter/blob/master/lib/widgets/async_helper.dart
中大量使用