all top-level property
Implementation
List<Widget> all = [
TextDisplayLarge('Display Large\nopacity: 0.5', opacity: 0.5),
TextDisplayMedium('Display Medium\ncolor: orange[600]', color: Colors.orange[600]),
TextDisplaySmall('Display Small\nbackgroundColor: blue[100]', backgroundColor: Colors.blue[100]),
TextHeadlineLarge('Headline Large\ndecoration: TextDecoration.underline', decoration: TextDecoration.underline),
TextHeadlineMedium('Headline Medium. \ndirection: TextDirection.rtl', direction: TextDirection.rtl),
TextHeadlineSmall('Headline Small. overflow: TextOverflow.ellipsis. Plus some jibber-jabber to overflow', overflow: TextOverflow.ellipsis),
TextTitleLarge('Title Large. softWrap: false. Plus some jibber-jabber to overflow', softWrap: false),
TextTitleMedium('Title Medium. textAlign: TextAlign.center', textAlign: TextAlign.center),
TextTitleSmall('Title Small'),
TextBodyLarge('BodyLarge'),
TextBodyMedium('BodyMedium'),
TextBodySmall('BodySmall'),
TextLabelLarge('LabelLarge'),
TextLabelMedium('LabelMedium'),
TextLabelSmall('LabelSmall'),
];