颤动:我想要中心的文字
Posted
技术标签:
【中文标题】颤动:我想要中心的文字【英文标题】:flutter: I want text in Center 【发布时间】:2021-10-23 12:36:15 【问题描述】:我有一排。在这一行中,我有两个小部件,一个在图标中,一个是文本,在这一行中,我的图标固定在左侧,我希望我的文本在这一行的中心,我的图标将固定
这是我的代码。
child: Column(
children: [
Container(
color: mPrimaryColor,
height: MediaQuery.of(context).size.height / 23,
width: MediaQuery.of(context).size.width,
child: Row(
children: [
SizedBox(
width: 15,
),
InkWell(
onTap: ()
Navigator.pop(context);
,
child: Container(
height: MediaQuery.of(context).size.height / 23,
width: 30,
child: Icon(
Icons.arrow_back_ios_rounded,
size: 20,
color: whitetext,
),
),
),
Spacer(),
Text(
// "$widget.headerName".tr(),
"ADMINISTRATIVE CONTACT",
style: headingWhite(),
textAlign: TextAlign.center,
),
Spacer(),
],
),
),],),
【问题讨论】:
请避免发布带有广告的帖子。您可以改为模糊它们。 【参考方案1】:试试这个:
children: [
SizedBox(
width: 15,
),
InkWell(
onTap: ()
Navigator.pop(context);
,
child: Container(
height: MediaQuery.of(context).size.height / 23,
width: 30,
child: Icon(
Icons.arrow_back_ios_rounded,
size: 20,
color: whitetext,
),
),
),
Expanded(child: Center(child: Text(
// "$widget.headerName".tr(),
"ADMINISTRATIVE CONTACT",
style: headingWhite(),
textAlign: TextAlign.center,
),),),
SizedBox(
width: 45,
),
],
【讨论】:
以上是关于颤动:我想要中心的文字的主要内容,如果未能解决你的问题,请参考以下文章