lightTextCenter function
Implementation
lightTextCenter(text, color, double size) => Center(
child: Text(
text,
textAlign: TextAlign.center,
style: TextStyle(
//fontFamily: TextFontFamily.GILROY_MEDIUM,
fontSize: size,
color: color),
));