对一个Text内容不同部分按照不同样式显示

Text.rich(TextSpan(
  children:[
    TextSpan(
      text:'Home:'
    ),
    TextSpan(
      text:'urlurlurl',
      style:TextStyle(
        color:Colors.blue
      )
    )
  ]
))

文本样式可被继承

Default(
  style:TextStyle(
    color:Colors.red,
    fontSize:20.0
  ),
  textAlign:TextAlign.center
)

 

posted on 2019-07-04 10:37  沉默的末1993  阅读(876)  评论(0编辑  收藏  举报