headerText function

Widget headerText(
  1. String text,
  2. double size, {
  3. Color color = Colors.white,
})

Implementation

Widget headerText(String text, double size, {Color color = Colors.white}) {
  return AutoSizeText(
    text,
    style: GoogleFonts.poppins(
        textStyle: TextStyle(
            color: color, fontWeight: FontWeight.bold, fontSize: size)),
    minFontSize: size,
  );
}