您可以为此使用flutter_html_view包。
String html = '<bold>Hello<bold> World';
new HtmlTextView(data: html);
如果您只想使用不同的样式,则可以使用像这样的
RichText小部件。
TextSpans
new RichText( text: new TextSpan(text: 'Hello ', style: DefaultTextStyle.of(context).style, children: <TextSpan>[new TextSpan(text: 'bold', style: new TextStyle(fontWeight: FontWeight.bold)), new TextSpan(text: ' world!'), ], ), )



