buildText method
- String text,
- double size,
- FontWeight fontWeight,
- Color textColor,
Implementation
Text buildText(
String text, double size, FontWeight fontWeight, Color textColor) {
return Text(
text,
textAlign: TextAlign.center,
style: TextStyle(
fontSize: size,
fontWeight: fontWeight,
color: textColor,
),
);
}