gpt4 book ai didi

flutter - 如何在 Flutter 中将颜色作为 UI 文本的一部分?

转载 作者:IT王子 更新时间:2023-10-29 06:57:21 25 4
gpt4 key购买 nike

如何更改部分文本的颜色?我正在努力使文本显示“没有帐户?立即注册!”,但我想为 立即注册! 部分添加颜色。如果可能,我该怎么做?

image

最佳答案

使用 RichText https://docs.flutter.io/flutter/widgets/RichText-class.html

RichText(
text: TextSpan(
text: "Don't have an account? ",
style: TextStyle(color: Colors.black, fontSize: 40),
children: <TextSpan>[
TextSpan(text: ' Register now!', style: TextStyle(color: Colors.red)),
],
),
);

Result

关于flutter - 如何在 Flutter 中将颜色作为 UI 文本的一部分?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55778185/

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