gpt4 book ai didi

flutter - 向 TextButton 添加尾随图标?

转载 作者:行者123 更新时间:2023-12-02 01:52:31 26 4
gpt4 key购买 nike

有没有办法向 TextButton 添加尾随图标?

这是我的代码:

TextButton(
child: Center(
child: Text ('Dummy', style: GoogleFonts.openSans (
color: Colors.white, fontWeight: FontWeight.w400,
fontSize: 28),),
),
onPressed: () {
Navigator.push(
context,
MaterialPageRoute(builder: (context) => FourteenthRoute(),),);
}
),

最佳答案

您可以简单地将 TextButtonchild 小部件与 Row 小部件。

          TextButton(
onPressed: () => {
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => FourteenthRoute(),
),
)
},
child: Row(
mainAxisSize: MainAxisSize.min,
children: [
Text(
"Dummy",
style: GoogleFonts.openSans(
color: Colors.white,
fontWeight: FontWeight.w400,
fontSize: 28),
),
Icon(Icons.menu)
],
),
),

关于flutter - 向 TextButton 添加尾随图标?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70067095/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com