如何在日历中的事件列表中添加多个值?

问题描述

事件存储在这里

 Map<DateTime,List<dynamic>> _events;

现在,当我尝试在所选日期添加特定事件(由多个值组成)时,只会添加1个值。

FlatButton(
                  child: Text("Save"),onpressed: () {
                    if (_eventController.text.isEmpty ||
                        _subjectNameController.text.isEmpty) return;
                    if (_events[_controller.selectedDay] != null) {
                     _events[_controller.selectedDay]
                          .add(_eventController.text);
                      _events[_controller.selectedDay]
                          .add(_subjectNameController.text);
                    }
                    else {
                      _events[_controller.selectedDay] = [
                        _eventController.text
                      ];
                    }
                    _eventController.clear();
                    Navigator.pop(context);
                  },

那么,我应该怎么做才能在列表事件中添加多个值?
顺便说一句,我想在添加

enter image description here

之后生成这种容器

这是github仓库conceptualSchoolApp

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)