📜  富文本颤动 - 任何代码示例

📅  最后修改于: 2022-03-11 14:56:46.136000             🧑  作者: Mango

代码示例4
RichText(
  text: TextSpan(
    text: 'Hello ',
    style: DefaultTextStyle.of(context).style,
    children: const [
      TextSpan(text: 'bold', style: TextStyle(fontWeight: FontWeight.bold)),
      TextSpan(text: ' world!'),
    ],
  ),
)