对不起,您(真的是扑扑和飞镖的新手),但我想知道如何在屏幕的右侧(应用程序栏下方)有一个CircleAvatar,在它的对面左侧有一些文本。在此先感谢您的帮助!我已经将为文本编写的代码粘贴到左侧(在应用栏下方)。我知道对大多数人来说,这可能是一个非常简单的问题,但对我来说,这不是因为我还没有掌握过飞镖/颤振器。
body: Column(
children: <Widget>[
Align(
alignment: Alignment.centerLeft,
child: new Padding(
padding: const EdgeInsets.fromLTRB(20, 20, 20, 7),
child: new Text(
'My Briefing',
style:
new TextStyle(fontSize: 20.0, fontWeight: FontWeight.bold),
),
),
),
),
答案 0 :(得分:1)
类似的事情可以满足您的需求:
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: <Widget>[
Padding(
padding: const EdgeInsets.fromLTRB(20, 20, 20, 7),
child: Text(
'My Briefing',
style: TextStyle(fontSize: 20.0, fontWeight: FontWeight.bold),
),
),
CircleAvatar(),
],
)
顺便说一句,从dart 2开始,您可以在请求每个新创建的类时放下“ new”关键字。