/// Created with Android Studio. /// User: 三帆 /// Date: 14/01/2019 /// Time: 19:02 /// email: sanfan.hx@alibaba-inc.com /// target: xxx import 'package:flutter/material.dart'; class RichTextDemo extends StatefulWidget { _Demo createState() => _Demo(); } class _Demo extends State { @override Widget build(BuildContext context) { return Container( color: Color(0xff000000), width: 750.0, child: RichText( text: TextSpan( text: 'Hello ', children: [ TextSpan(text: 'bold', style: TextStyle(fontWeight: FontWeight.bold, color: Color(0xfffffc42))), TextSpan(text: ' world!', style: TextStyle(fontStyle: FontStyle.italic)), ], ), ), ); } }