首页 > 解决方案 > Flutter如何从firebase获取值日期时间(时间戳)到syncfusion日历

问题描述

Flutter如何从firebase获取值日期时间(时间戳)到syncfusion日历

代码https://drive.google.com/file/d/1F2q_bxVCkHwZrHOMZ4hN7FBIJR4IuEQ3/view?usp=sharing 图片https://i.stack.imgur.com/aEMjH.png

Future<void> getDataFromFireStore() async {
    final now = DateTime.now().toUtc();
    var snapShotsValue = await databaseReference
        .collection("appointments")
        .doc("appointments")
        .collection('all')
        .get();

    final Random random = new Random();
    List<Meeting> list = snapShotsValue.docs
        .map((e) => Meeting(
            eventName: e.data()['description'],
            from: DateFormat('dd/MM/yyyy HH:mm:ss').parse(e.data()['date']),
            to: DateFormat('dd/MM/yyyy HH:mm:ss').parse(e.data()['date']),
            background: _colorCollection[random.nextInt(9)],
            isAllDay: false))
        .toList();

    setState(() {
      events = MeetingDataSource(list);
    });
  }

标签: flutter

解决方案


TimeStamp.toDate()从 firebase 时间戳转换为适当的DateTime对象。


推荐阅读