creatRowWdiges method

List<Widget> creatRowWdiges()

Implementation

List<Widget> creatRowWdiges() {
  List<Widget> list = [];
  for (var i = 0; i < rowCount; i++) {
    final widget = Expanded(
      child: Center(
        child: Transform.rotate(
          angle: 120,
          child: Text(
            text,
            style: const TextStyle(
              color: Color.fromARGB(35, 0, 0, 0),
              fontSize: 16,
              decoration: TextDecoration.none,
            ),
          ),
        ),
      ),
    );
    list.add(widget);
  }
  return list;
}