getTxtImage method
dynamic
getTxtImage(
- dynamic label,
- dynamic color,
- dynamic fontSize,
- dynamic height,
- dynamic letterSpacing,
Implementation
getTxtImage(label, color, fontSize, height, letterSpacing) {
myLogAll('getTxtImage');
return Text(
getSCurrent(label),
style: TextStyle(
color: fromBdckcolor(color),
//color: Colors.white,
fontSize: fontSize,
height: height,
//fontFamily: ,
letterSpacing: letterSpacing,
fontWeight: FontWeight.bold,
shadows: [
Shadow(
color: Color(color),
offset: Offset.fromDirection(3),
blurRadius: 5.0)
],
),
);
}