0 purchases
textrich
TextRich #
A composite rich text component.
Getting Started #
Screenshot #
Code #
TextRich(
"TextRich example app",
matchTexts: const ["exa"],
matchStyles: const [TextStyle(color: Colors.red)],
),
TextRich(
"TextRich example app",
matchTexts: const ["exa", "a"],
matchStyles: const [TextStyle(color: Colors.red)],
),
TextRich(
"TextRich example app",
matchTexts: const ["exa", "a"],
matchStyles: const [TextStyle(color: Colors.red), TextStyle(color: Colors.blue)],
),
TextRich(
"TextRich example app",
matchTexts: const ["exa", "a"],
matchStyles: const [TextStyle(color: Colors.red,fontStyle: FontStyle.italic,fontSize: 30,decoration: TextDecoration.underline), TextStyle(color: Colors.blue)],
onTap: (value){
print('Tap value :$value');
},
style: const TextStyle(color: Colors.black,fontSize: 16),
),
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.