Home

Published

- 1 min read

rich text flutter

img of rich text flutter

The solution for this is noted below

rich text flutter

Solution

   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,
  )

Try other methods by searching on the site. That is if this doesn’t work