颤振 |我想在左侧添加小部件如何?
Posted
技术标签:
【中文标题】颤振 |我想在左侧添加小部件如何?【英文标题】:Flutter | I want add widget in left side how? 【发布时间】:2021-12-23 15:29:20 【问题描述】:我正在使用颤振制作应用程序如何在左侧添加另一个文本小部件 (我是 Flutter 的新手)
【问题讨论】:
【参考方案1】:试试下面的答案希望它对你有帮助。您可以使用 ListTile
和 Row
Widget 参考 ListTile
here 和 Row
here
使用ListTile
ListTile(
leading: CircleAvatar(),
title: Text(
'Make a word using letter \'a\'',
),
),
使用 ListTile 的结果屏幕 ->
使用Row
Row(
mainAxisAlignment: MainAxisAlignment.spaceAround,
children: [
CircleAvatar(),
Text(
'Make a word using letter \'a\' ',
),
],
),
您的结果屏幕使用 Row->
【讨论】:
非常感谢!!!!。 很高兴为您提供帮助。用颤振享受你的骑行 感谢您的好意【参考方案2】:使用行小部件。
Row(
mainAxisAlignment: MainAxisAlignment.spaceAround,
children: [
Text('Hello Flutter'),
const Icon(
Icons.schedule,
size: 18,
color: Colors.white54,
),
const SizedBox(
width: 4,
),
const Text(
' min',
style: TextStyle(
fontSize: 11,
color: Color(0xfff1f1f1),
fontWeight: FontWeight.w700,
),
),
],
);
【讨论】:
非常感谢!!!!。以上是关于颤振 |我想在左侧添加小部件如何?的主要内容,如果未能解决你的问题,请参考以下文章