I am writing an application which shows a few words in different colors in flutter.
I tried to load HTML files using the plugin flutter_html_view but that one doesn
You can achieve this by using a RichText class class with TextStyle class
RichText
widget helps to answer and achieve the above cases
RichText(
textAlign: TextAlign.center,
text: TextSpan(children: [
TextSpan(
text: "I agree to the ",
style: TextStyle(color: Colors.black87)),
TextSpan(
text: "Terms and Conditions",
style: TextStyle(
color: Colors.deepPurple,
fontWeight: FontWeight.bold)),
]),
)