2017-01-09 13 views

答えて

10

あなたはRichTextウィジェットを使用する必要があります。

リッチテキストウィジェットは、子どもTextSpansのリストを持つTextSpanウィジェットを取ります。

それぞれのTextSpanウィジェットは異なるTextStyleを持つことができます。ここで

は、レンダリングするためのコード例です: こんにちは世界

var text = new RichText(
    text: new TextSpan(
    // Note: Styles for TextSpans must be explicitly defined. 
    // Child text spans will inherit styles from parent 
    style: new TextStyle(
     fontSize: 14.0, 
     color: Colors.black, 
    ), 
    children: <TextSpan>[ 
     new TextSpan(text: 'Hello'), 
     new TextSpan(text: 'World', style: new TextStyle(fontWeight: FontWeight.bold)), 
    ], 
), 
); 
関連する問題