フラッターアプリケーションにappbarを実装しようとしています。アプリを閉じるアクションアイコンを追加できます。クローズアクションアイコンの横にユーザー名を表示したいと思います。 apparセクションのアクションウィジェット配列に新しいText()を追加しようとしました。しかし、それを整列させることはできません。アクションテキストを直接追加する方法はありますか?
コード:
@override
Widget build(BuildContext context) {
//build a form widget using the form key we created above
return new Scaffold(
appBar: new AppBar(
title: new Text(StringRef.appName),
actions: <Widget>[
new Container(),
new Text(
userName,
textScaleFactor: 1.5,
style: new TextStyle(
fontSize: 12.0,
color: Colors.white,
),
),
new IconButton(
icon: new Icon(Icons.close),
tooltip: 'Closes application',
onPressed: () => exit(0),
),
],
),
}
テキストウィジェットをセンターウィジェット内に次のようにラップします
new Center(
new Text(
userName,
textScaleFactor: 1.5,
style: new TextStyle(
fontSize: 12.0,
color: Colors.white,
),
)