textWidget method

Widget textWidget()

Implementation

Widget textWidget() {
  Widget result =  TDText(
    text,
    textColor: textColor,
    fontWeight: FontWeight.w400,
    font: fitFont(),
    textAlign: TextAlign.center,
  );
  if(refreshWidget != null){
    result = Row(
      mainAxisSize: MainAxisSize.min,
      children: [
        result,
        const SizedBox(width: 8,),
        refreshWidget!,
      ],
    );
  }
  return result;
}