customText function
Implementation
Widget customText({
required String text,
Color color = AppColor.kDeepBlueColor,
TextAlign textAlign = TextAlign.start,
int? maxLines,
double fontSize = 10,
FontWeight fontWeight = FontWeight.normal,
}) {
return Text(
text,
textAlign: textAlign,
maxLines: maxLines,
overflow: maxLines != null ? TextOverflow.ellipsis : null,
style: TextStyle(
color: color,
fontFamily: "RobotoSerif_28pt",
fontWeight: fontWeight,
fontSize: fontSize,
),
);
}