title2 method
Widget
title2(
- BuildContext context,
- String? text, {
- int? maxLines,
- TextAlign? textAlign,
- Color? color,
- TextDecoration? textDecoration,
Implementation
Widget title2(BuildContext context, String? text,
{int? maxLines,
TextAlign? textAlign,
Color? color,
TextDecoration? textDecoration}) {
return Text(
text ?? '',
textAlign: textAlign ?? TextAlign.start,
maxLines: maxLines,
overflow: maxLines != null ? TextOverflow.ellipsis : null,
style: TextStyle(
fontFamily: Theme.of(context).textTheme.bodyMedium!.fontFamily,
color: color ?? Theme.of(context).textTheme.titleLarge!.color,
fontSize: h2,
height: textHeight,
fontWeight: semiBoldWeight,
decoration: textDecoration),
);
}