tableLabel method
- 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: 10.dp,
fontWeight: FontWeight.w400,
color: ColorHelper.grey05,
),
),
),
);
}