tableLabel method

Widget tableLabel(
  1. String label
)

Implementation

Widget tableLabel(String label) {
  return TableCell(
    child: Padding(
      padding: const EdgeInsets.all(8),
      child: Text(label,
          overflow: TextOverflow.ellipsis,
          style: TextStyle(
              fontSize: 12.dp,
              fontWeight: FontWeight.w400,
              color: ColorHelper.textLight)),
    ),
  );
}