0
Q:

rich text flutter

  RichText(    text: TextSpan(        style: TextStyle(color: Colors.black, fontSize: 36),        children: <TextSpan>[          TextSpan(text: 'Woolha ', style: TextStyle(color: Colors.blue)),          TextSpan(text: 'dot '),          TextSpan(text: 'com', style: TextStyle(decoration: TextDecoration.underline))        ],    ),    textScaleFactor: 0.5,  )
1
  RichText(    text: TextSpan(        style: TextStyle(color: Colors.black, fontSize: 18),        children: textSpans,    ),  )
0
  RichText(    text: TextSpan(        style: TextStyle(color: Colors.black, fontSize: 36),        children: <TextSpan>[          TextSpan(text: 'Woolha ', style: TextStyle(color: Colors.blue)),          TextSpan(text: 'dot '),          TextSpan(text: 'com', style: TextStyle(decoration: TextDecoration.underline))        ],    ),  )
0
  List<TextSpan> textSpans = <TextSpan>[    TextSpan(text: 'Woolha ', style: TextStyle(color: Colors.blue)),    TextSpan(text: 'dot '),    TextSpan(text: 'com '),    TextSpan(text: 'word '),    TextSpan(text: 'word '),    TextSpan(text: 'word'),    TextSpan(text: 'word'),    TextSpan(text: 'word'),    TextSpan(text: 'word'),    TextSpan(text: 'word'),  ];
0

New to Communities?

Join the community