buildTableCell method

Widget buildTableCell(
  1. String itemValue
)

Implementation

Widget buildTableCell(String itemValue) {
  return TableCell(
      child: Padding(
          padding: const EdgeInsets.fromLTRB(8, 14, 4, 14),
          child: Text(itemValue,
              overflow: TextOverflow.ellipsis,
              style: TextStyle(
                  fontSize: 12.dp,
                  fontWeight: FontWeight.w500,
                  color: ColorHelper.textDarkMed))));
}