class _DemoPageState extends State<DemoPage> {
@override
Widget build(BuildContext context) {
return Center(
child: RichText(
text:TextSpan(
text: 'i',
style: TextStyle(color: Colors.red,fontSize: 30.0),
children: <TextSpan>[
TextSpan(text:'want',style: TextStyle(fontWeight: FontWeight.bold,color: Colors.red)),
TextSpan(text:'study',style: TextStyle(color: Colors.blue))
]
)
)
);
}
}
部分素材资源来源网站,本站提供免费下载,如有侵权请联系站长马上删除!


