TableRowList method
Implementation
TableRowList(int i) {
List<String> str = hasMap[i];
return Container(
child: Table(
children: [
TableRow(children: [
for (int j = 0; j < str.length; j++) ...[
Column(
children: [
//DATE
CheckCurrenDate(str[j].toString()),
//EVENLIST
CheckEventList(str[j].toString()),
],
)
]
])
],
),
);
}