【发布时间】:2022-11-04 17:50:38
【问题描述】:
我想在右侧添加报告问题文本我尝试了位置小部件,但它不起作用我做什么?
我试图实现-
代码-
Positioned(
right: 0,
child: Row(
children: [
Icon(Icons.report, color: Color(0xff0E5487),),
TextButton(onPressed: () => {}, child: Text("Report Question",
style: cstmTextStyle(fs: 18, fc:Color(0xff0E5487) ),)),
],
),),
【问题讨论】:
-
你能添加你的完整代码吗?
-
您是否尝试过 mainAxisAlignment: MainAxisAlignment.end,在行小部件上
标签: flutter