布局问题
来源:9-2 基于Http实现网络操作
叶问0
2019-11-08
老师,针对这一段代码,我返现一个问题,“点我”在没有网络请求前显示是靠左的,网络请求返回后显示就成了居中了,我们也没有设置文本的显示情况,这个怎么解释呢?
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: Text(‘Http’),
),
body: Column(
children: [
InkWell(
onTap: () {
fetchPost().then((CommonModel value) {
setState(() {
showResult =
‘请求结果:
hideAppBar:KaTeX parse error: Expected 'EOF', got ':' at position 24: …ideAppBar}
icon:̲{value.icon}’;
});
});
},
child: Text(
‘点我’,
style: TextStyle(fontSize: 26),
),
),
Text(showResult)
],
),
),
);
}
}
写回答
1回答
-
CrazyCodeBoy
2019-11-11
是因为showresult将整个布局的宽度撑开了,所以“点我会跟着居中”
00
相似问题