- Flutter Widget Livebook

Text

A run of text with a single style.

Example

Text(
  'Hello, Bob! How are you?',
  textAlign: TextAlign.center,
  overflow: TextOverflow.ellipsis,
  style: TextStyle(fontWeight: FontWeight.bold),
)

Related Links

  1. Example
  2. Related Links