appText function
Implementation
Widget appText(String word, double z, FontWeight w,
{Color col = appDarkText, TextAlign align = TextAlign.left, int maxLines = 5, int shadow = 0}) {
return Text(
word,
softWrap: true,
maxLines: maxLines,
overflow: TextOverflow.ellipsis,
textAlign: align,
style: TextStyle(
color: col,
fontFamily: 'Open Sans',
fontSize: z,
fontWeight: w,
shadows: shadow > 0 ? elevation(Colors.black38, shadow) : [],
),
);
}