lightTextCenter function

dynamic lightTextCenter(
  1. dynamic text,
  2. dynamic color,
  3. double size
)

Implementation

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