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