我想改变文字中字母的颜色。我想将字母H的颜色从文字Hello更改为橙色,并让ello随着时间的推移而变化。那么如何改变它。
发布于 2022-02-27 09:41:47
Row(
children: [
Text(
'H',
style: TextStyle(color: Colors.orange),
),
Text('ELLO',style: TextStyle(color: Colors.black),],
),https://stackoverflow.com/questions/71283346
复制相似问题