gpt4 book ai didi

dart - flutter 圆形进度指示器未显示在应用栏中

转载 作者:IT王子 更新时间:2023-10-29 06:40:37 28 4
gpt4 key购买 nike

我正在创建一个项目,我需要在应用栏中显示一个进度条。代码如下所示

bool loader_saver=false;
return Scaffold(
appBar: new AppBar(
title: new Text("add data"),
actions: <Widget>[
loader_saver?
new CircularProgressIndicator()
:
new FlatButton(
onPressed: () {
_add_Data();
},
child: new Icon(
Icons.save,
color: Colors.white,
))

],
)

这里是onpressed方法

void _add_data(){ 
final _formstate = _form_key.currentState;
if (_formstate.validate()) {
_form_key.currentState.save();
setState(() {
loader_saver=true;
});
}
}

最佳答案

这将在应用栏中显示您的 CircularProgressIndicator,根据您的要求进行更改

actions: <Widget>[
new Container(width: 60.0, height: 20.0, color: Colors.lightGreen,
child: new CircularProgressIndicator(),)]

关于dart - flutter 圆形进度指示器未显示在应用栏中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52171718/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com