美文网首页
Flutter-RichText

Flutter-RichText

作者: 梦幽辰 | 来源:发表于2019-12-30 12:46 被阅读0次

可在一行文字里定义多种样式

class BasicDemo extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return RichText(
      text: TextSpan(
        text: 'ninghao',
        style: TextStyle(
          color: Colors.deepPurpleAccent,
          fontSize: 34,
          fontStyle: FontStyle.italic, // 斜体
          fontWeight: FontWeight.w100, // 文字的粗细
        ),
        children: [
          TextSpan(
            text: '.net',
            style: TextStyle(
              fontSize: 17,
              color: Colors.black
            )
          )
        ]
      ),
    );
  }
}
预览

相关文章

网友评论

      本文标题:Flutter-RichText

      本文链接:https://www.haomeiwen.com/subject/xtopoctx.html