Skip to content

Latest commit

 

History

History

text_rich

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

text_rich

A flutter project to explain the working of rich constructor of Text.

Steps to use the rich constructor

  • Use the following code to use the constructor
constText.rich( TextSpan( text:'Hello', // default text style children:<TextSpan>[ TextSpan(text:' beautiful ', style:TextStyle(fontStyle:FontStyle.italic)), TextSpan(text:'world', style:TextStyle(fontWeight:FontWeight.bold)), ], ), ), 

close