customText function
Widget
customText(
- String text, {
- required Color color,
- required double fontSize,
- FontStyle fontStyle = FontStyle.normal,
- FontWeight fontWeight = FontWeight.normal,
- TextAlign textAlign = TextAlign.center,
- TextDecoration textDecoration = TextDecoration.none,
- TextOverflow textOverflow = TextOverflow.clip,
Implementation
Widget customText(String text, {required Color color, required double fontSize, FontStyle fontStyle = FontStyle.normal,
FontWeight fontWeight = FontWeight.normal, TextAlign textAlign = TextAlign.center, TextDecoration textDecoration = TextDecoration.none,
TextOverflow textOverflow = TextOverflow.clip}) {
return Text(
text,
textAlign: textAlign,
overflow: textOverflow,
textScaleFactor: 1.0,
style: TextStyle(
color: color,
fontSize: fontSize,
fontStyle: fontStyle,
fontWeight: fontWeight,
decoration: textDecoration,
),
);
}