Flutter——使用富文本

return Text.rich(
      TextSpan(
        children: [
          WidgetSpan(child: Icon(Icons.star)),
          TextSpan(text: "haha",style: TextStyle(fontSize: 18,color: Colors.green)),
          TextSpan(text: "测试",style: TextStyle(fontSize: 15,color: Colors.red))
        ]
      )
    );

你可能感兴趣的:(Flutter——使用富文本)