bodySmall property
double
get
bodySmall
The smallest text size in the hierarchy.
Size: Base size (default: 14px)
Use cases:
- Captions and labels
- Footnotes and disclaimers
- Helper text and hints
- Timestamps and metadata
Example:
Text(
'Updated 5 mins ago',
style: TextStyle(
fontSize: appFontSizes.bodySmall,
color: Colors.grey,
),
)
Implementation
double get bodySmall => _bodySmall;