Styling text with RichText Widget

Huma Farheen
4 min readFeb 1, 2021

RichText is a better and extended version of Text Widget and provides various options to style a text.

Before talking about RichText lets first talk about using a Text widget. The Text widget displays a string of text consisting of single line or multiline with single and uniform style. For example,

Container(
child: Center(
child: Text(
"I'm free to be the

--

--