例えば :
String desc = "<bold>Hello<bold> World";
new Text(desc);
flutter_html_view パッケージを使用できます。
_String html = '<bold>Hello<bold> World';
_
new HtmlTextView(data: html);
異なるスタイルが必要な場合は、RichText
ウィジェットをTextSpans
とともに this のように使用できます。
_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!'),
], ), )
_