tableLabel method

Widget tableLabel(
  1. String label
)

Implementation

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