如何更改部分文本的颜色?
我正在努力使它成为这样的文本说“Don't have an account? Register now!
但我想为Register now!部分添加颜色。如果可能,我该怎么做?
image

最佳答案

使用

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)),
          ],
        ),
      );

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

10-08 15:33