labelTextStyle static method

TextStyle labelTextStyle(
  1. DraftModeUIThemeData theme
)

Implementation

static TextStyle labelTextStyle(DraftModeUIThemeData theme) {
  return TextStyle(
    color: theme.tertiaryColor.text,
    fontSize: theme.rowLabelFontSize,
    fontWeight: theme.rowLabelFontWeight,
  );
}