gpt4 book ai didi

if-statement - 如何在 Dart 的 TextStyle 中包含 if 语句

转载 作者:行者123 更新时间:2023-12-05 05:08:25 26 4
gpt4 key购买 nike

我有一个 TextStyle 和一个可以是 truefalse 的变量 textBold。 if在这个TextStyle中如何实现?

TextStyle(
color: Colors.white,
if ($textBold == true){
fontWeight: FontWeight.bold,
}

最佳答案

使用如下条件语句。

Text(
"Hello",
style: TextStyle(
fontWeight: textBold ? FontWeight.bold : FontWeight.normal
),
),

关于if-statement - 如何在 Dart 的 TextStyle 中包含 if 语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58364750/

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