Easy bold text in flutter
Aug 26, 2023
Have you ever needed a Text widget that just bolds the parts of your text that is surrounded by ‘**’ ?
Search no more!!
Have BoldableText 🙌:
You can use it like this:
BoldableText(
"A part of this text is **bold**",
style: const TextStyle(
fontFamily: 'Poppins',
fontSize: 18,
color: Color(0xffffffff),
fontWeight: FontWeight.w300,
),
textAlign: TextAlign.center,
isSelectable: true,
)