Answers for "flutter bold word in string text"

5

flutter text style bold

Text(
  'My Card Alert',
  style: TextStyle(
  	fontWeight: FontWeight.bold
  ),
)
Posted by: Guest on September-30-2020
0

Flutter: How do I bold (or format) a piece of text within a paragraph?

url: https://stackoverflow.com/questions/41557139/how-do-i-bold-or-format-a-piece-of-text-within-a-paragraph

var text = RichText(
  text: TextSpan(
    // Note: Styles for TextSpans must be explicitly defined.
    // Child text spans will inherit styles from parent
    style:TextStyle(
      fontSize: 14.0,
      color: Colors.black,
    ),
    children: <TextSpan>[
       TextSpan(text: 'Hello'),
       TextSpan(text: 'World', style: TextStyle(fontWeight: FontWeight.bold)),
    ],
  ),
 );
Posted by: Guest on December-30-2021

Browse Popular Code Answers by Language