numberTextStyle function

TextStyle numberTextStyle(
  1. dynamic context
)

Implementation

TextStyle numberTextStyle(context) {
  return TextStyle(
    color: Theme.of(context).primaryColorDark,
    fontSize: 21.0,
    fontWeight: FontWeight.normal,
    decoration: TextDecoration.none,
  );
}