boldText static method

Widget boldText(
  1. BuildContext context,
  2. String text
)

Creates a Text widget with bold font weight.

Parameters:

  • context: The build context
  • text: The text to display

Implementation

static Widget boldText(BuildContext context, String text) {
  return Text(text,
      style: TextStyle(fontWeight: FontWeight.bold), softWrap: true);
}