getTxtImage method

dynamic getTxtImage(
  1. dynamic label,
  2. dynamic color,
  3. dynamic fontSize,
  4. dynamic height,
  5. 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)
      ],
    ),
  );
}