TKeyValueTheme.defaultTheme constructor

TKeyValueTheme.defaultTheme(
  1. ColorScheme colors
)

Implementation

factory TKeyValueTheme.defaultTheme(ColorScheme colors) {
  return TKeyValueTheme(
    keyStyle: TextStyle(fontSize: 13, fontWeight: FontWeight.w400, color: colors.onSurfaceVariant),
    labelStyle: TextStyle(fontSize: 11, fontWeight: FontWeight.w500, color: colors.onSurfaceVariant),
    valueStyle: TextStyle(fontSize: 13, fontWeight: FontWeight.w400, color: colors.onSurface),
  );
}