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