content static method

Widget content(
  1. String text, {
  2. Color? color,
  3. bool isNumber = false,
})

TEXT CONTENT

Implementation

static Widget content(
  String text, {
  Color? color,
  bool isNumber = false,
}) {
  return UIHeading(
    as: _contentStyles,
    text: text,
    color: color,
    fontFamily: isNumber ? SUIFonts.forNumbers : SUIFonts.forText,
  );
}