gpt4 book ai didi

android-studio - 我如何格式化(粗体)文本中的单词?

转载 作者:IT王子 更新时间:2023-10-29 06:37:42 24 4
gpt4 key购买 nike

在下面的代码中,我想将“$_counter”的值设为粗体。如何实现?

new Text(
'You have pushed the button $_counter time${_counter > 1
? 's'
: ''}',
style: new TextStyle(fontSize: fontSize),
textAlign: TextAlign.center,
),

我希望输出是这样的:

您已按下按钮 2

最佳答案

你必须使用 RichTextfor

new RichText(
textAlign: TextAlign.center,
text: new TextSpan(
style: TextStyle(color: Colors.black),
children: <TextSpan>[
new TextSpan(text: 'You have pushed the button '),
new TextSpan(text: '$_counter', style: new TextStyle(fontWeight: FontWeight.bold)),
new TextSpan(text: ' time!'),
],
),
)

enter image description here

关于android-studio - 我如何格式化(粗体)文本中的单词?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51319174/

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