mediumTextCenter function

dynamic mediumTextCenter(
  1. dynamic text,
  2. dynamic color,
  3. double size, [
  4. dynamic align,
])

Implementation

mediumTextCenter(text, color, double size, [align]) => Text(
      text,
      textAlign: TextAlign.center,
      style: TextStyle(
          //fontFamily: TextFontFamily.GILROY_MEDIUM,
          fontSize: size,
          color: color),
    );