xSch_Text_Builder<T> method

Widget xSch_Text_Builder<T>({
  1. required BuildContext context,
  2. required XCol xCol,
  3. required String value,
  4. List<TextInputFormatter>? inputFormatters,
  5. double? height,
})

Implementation

Widget xSch_Text_Builder<T>({required BuildContext context, required XCol xCol, required String value, List<TextInputFormatter>? inputFormatters, double? height}) {
  return XTextWithLabel(
    label: xCol.colCaption,
    text: xCol.format == "C" ? XUtils.xToCurrency(context, double.parse(value)) : value,
    text_Style: XStyles.xStyTextForDescr(Colors.white),
    label_Style: XStyles.xStyTextForLabel(XSchedaState.color_HintText),
  );
}