textH1 function

TextStyle textH1({
  1. Color? color,
})

Implementation

TextStyle textH1({Color? color}) {
  return TextStyle(
    fontSize: 64,
    fontWeight: FontWeight.w700,
    color: color ?? Colors.black,
    fontFamily: Strings.fontFamily,
  );
}