【发布时间】:2021-11-04 05:14:15
【问题描述】:
我想设置文本右侧(宽度 * 0.08)和图标左侧(宽度 * 0.08)但是当我运行它时。它不起作用。 并且当我为文本设置填充右侧并为图标设置左侧填充时,其他尺寸不起作用。 关于网络和电话的图像。 宽度 = 1080 .
这是我的代码的一部分:
Container(
child: Row(
children: [
Container(
alignment: Alignment.centerRight,
child: Padding(
padding: EdgeInsets.only(
top: pageWidth * 0.08,
right: pageWidth * 0.09,
bottom: pageWidth * 0.03),
child: Text(
"سلام",
style: TextStyle(
fontSize: 20),
),
),
),
Container(
child: Padding(
padding: EdgeInsets.only(
top: pageWidth * 0.08,
left: pageWidth * 0.06,
bottom: pageWidth * 0.04),
child: IconButton(
alignment: Alignment.topLeft,
onPressed: () {},
icon: Container(
child: SvgPicture.asset(
homeSettings,
width: pageWidth * 0.062,
height:pageWidth * 0.062,
),
),
),
)),
],
)),
【问题讨论】:
标签: flutter dart text icons alignment