loadTextStyle function
Implementation
TextStyle loadTextStyle(context) {
return TextStyle(
fontSize: 18.0,
decoration: TextDecoration.none,
color: Theme.of(context).primaryColor,
fontWeight: FontWeight.w800);
}
TextStyle loadTextStyle(context) {
return TextStyle(
fontSize: 18.0,
decoration: TextDecoration.none,
color: Theme.of(context).primaryColor,
fontWeight: FontWeight.w800);
}