我想对齐图片和文字。我已经修改了代码,使之发生,但它没有显示任何变化。
图像和文字应该是这样的。
而不是像上面的图片,我的是这样的。
这是我的代码,我使用 Package btw:
Column(
children: [
SizedBox(
width: 350,
child: Wrap(
alignment: WrapAlignment.start,
direction: Axis.horizontal,
crossAxisAlignment: WrapCrossAlignment.center,
children: [
SvgPicture.asset(
Assets.icons.image9.path,
fit: BoxFit.cover,
),
Wrap(
children: [
Padding(
padding: EdgeInsets.only(left: 15),
child: Text(
'Gekyume Onfroy',
style: heading3(
color: ColorName.neutralBackgroundWhite,
),
),
),
],
),
...
onSelected: (_) {},
child: SvgPicture.asset(Assets.icons.moreVertical.path),
),
),
SizedBox(width: 17),
Text(
'Access Code : 6666',
style: body1(color: ColorName.neutralBackgroundWhite),
),
],
),
1条答案
按热度按时间6tqwzwtp1#
如果移动终端没有足够的空间,不要使用wrap,因为它会从水平方向变成垂直方向。你必须使用行和列来代替,检查底层代码的实现和截图: