body property

double get body

Standard body text size.

Size: bodySmall × scaleFactor (default: 14 × 1.27 = ~17.8px)

Use cases:

  • Main paragraph text
  • List items
  • Form inputs
  • Button labels

Example:

Text(
  'This is a paragraph of body text...',
  style: TextStyle(fontSize: appFontSizes.body),
)

Implementation

double get body => bodySmall * _scaleFactor;