【发布时间】:2018-12-21 06:42:59
【问题描述】:
我有以下应用栏在颤动,并试图对齐标题下的潜文本“您想要的公司名称”输入。我尝试了不同的方法,但仍然无法对齐。它应该在顶部有“输入”,然后是潜台词对齐中心
这是我当前的代码
Widget build(BuildContext context) {
return Scaffold(
appBar: PreferredSize(
preferredSize: Size.fromHeight(75.0),
child: AppBar(
centerTitle: true,
title: Text('enter'),
actions: <Widget>[
new Container(),
new Center(
child: Text(
'Your desired business name',
textAlign: TextAlign.center,
style: new TextStyle(
fontSize: 14.0,
color: Colors.white,
),
)),
],
)),
);
}
【问题讨论】: