defaultDarkValueStyle static method

TextStyle defaultDarkValueStyle(
  1. BuildContext context
)

Default value style for dark theme

Implementation

static TextStyle defaultDarkValueStyle(BuildContext context) {
  return Theme.of(context).textTheme.headlineSmall!.copyWith(
    fontWeight: FontWeight.bold,
    color: Colors.white,
  );
}