TableRowList method

dynamic TableRowList(
  1. int i
)

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()),

              ],
            )
          ]
        ])
      ],
    ),
  );
}