gpt4 book ai didi

flutter - 如何在容器内的文本左侧添加图标

转载 作者:行者123 更新时间:2023-12-03 02:55:04 27 4
gpt4 key购买 nike

我有以下小部件:

Widget get _animatedButtonUI => Container(
height: 60,
width: 290,
decoration: BoxDecoration(
border: Border.all(
color: Color(0xFF9EC33B),
),
borderRadius: BorderRadius.circular(100.0),
color: Colors.white,
),
child: Center(
child: Text(
'COTINUE WITH GOOGLE',
style: TextStyle(
fontSize: 14.0,
fontWeight: FontWeight.bold,
color: Color(0xFF9EC33B),
),
),
),
);

因为它看起来像下图:

enter image description here

现在我需要在 Text 左边添加图标如下图:

enter image description here

那我怎么能做到这一点......

最佳答案

你只需要在容器内插入一行,就像这样:

Container(
height: 60,
width: 290,
decoration: BoxDecoration(
border: Border.all(
color: Color(0xFF9EC33B),
),
borderRadius: BorderRadius.circular(100.0),
color: Colors.white,
),
child: Row(
children: <Widget>[
Image.asset(yourImage),
Center(
child: Text(
'COTINUE WITH GOOGLE',
style: TextStyle(
fontSize: 14.0,
fontWeight: FontWeight.bold,
color: Color(0xFF9EC33B),
),
),
),
],
);

编辑:确保你修正了那个错字(“COTINUE WITH GOOGLE”=>“CONTINUE WITH GOOGLE”)

关于flutter - 如何在容器内的文本左侧添加图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62270151/

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