FutureBuilder(
future: _getBackInfo(context),//接收请求返回值的地方
builder: (context, snapshot) {
// 是否返回值
if (snapshot.hasData) {
return Container(
child:Column(
children: [],
),
);
}else{
return Text("加载中。。。。");
}
}
),
FutureBuilder(
future: _getBackInfo(context),//接收请求返回值的地方
builder: (context, snapshot) {
// 是否返回值
if (snapshot.hasData) {
return Container(
child:Column(
children: [],
),
);
}else{
return Text("加载中。。。。");
}
}
),
本文标题:异步加载组件FutureBuilder
本文链接:https://www.haomeiwen.com/subject/hycklktx.html
网友评论