Horje
Flutter: How do I bold (or format) a piece of text within a paragraph? Code Example
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)),
    ],
  ),
 );




Whatever

Related
sort in mongoose aggregate lookup Code Example sort in mongoose aggregate lookup Code Example
combine .proto in android studio project Code Example combine .proto in android studio project Code Example
Drupal 8 reset update hook drush Code Example Drupal 8 reset update hook drush Code Example
quotes for teacher appreciation Code Example quotes for teacher appreciation Code Example
open cmd here shortcut Code Example open cmd here shortcut Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
6