bodyLarge property

double get bodyLarge

Emphasized or larger body text.

Size: body × scaleFactor (default: 17.8 × 1.27 = ~22.6px)

Use cases:

  • Lead paragraphs
  • Callouts and quotes
  • Emphasized information
  • Large button text

Example:

Text(
  'Important message here',
  style: TextStyle(
    fontSize: appFontSizes.bodyLarge,
    fontWeight: FontWeight.w500,
  ),
)

Implementation

double get bodyLarge => body * _scaleFactor;