fontSizes property

FontSizesSystem get fontSizes

Sistema de tamaños de fuente tipográficos jerárquicos

Uso:

// Tamaños por categoría
Text(
  'Título',
  style: TextStyle(fontSize: Consts.fontSizes.display.lg),  // 57.0
)

Text(
  'Subtítulo',
  style: TextStyle(fontSize: Consts.fontSizes.headline.md),  // 28.0
)

Text(
  'Cuerpo',
  style: TextStyle(fontSize: Consts.fontSizes.body.md),  // 14.0
)

// Tamaños especiales
Text(
  'Etiqueta',
  style: TextStyle(fontSize: Consts.fontSizes.label.lg),  // 14.0
)

Implementation

static FontSizesSystem get fontSizes => FontSizesSystem();