buildTableCell method

TableCell buildTableCell(
  1. String itemValue
)

Implementation

TableCell buildTableCell(String itemValue) {
  return TableCell(
    child: GestureDetector(
      child: Padding(
        padding: EdgeInsets.fromLTRB(10.dp, 12.dp, 0, 12.dp),
        child: Text(
          itemValue,
          overflow: TextOverflow.ellipsis,
          style: TextStyle(
            fontSize: 14.dp,
            fontWeight: FontWeight.w400,
            color: ColorHelper.neutralText,
          ),
        ),
      ),
    ),
  );
}