/flutter_calender

calander widget for flutter

Primary LanguageDartBSD 2-Clause "Simplified" LicenseBSD-2-Clause

flutter_calendar

一个使用Flutter 编写的日历组件

使用

    import 'package:flutter_prada_calendar/calendar.dart';


     Map<DateTime, int> map;
     map = new Map();
     map.putIfAbsent(new DateTime.now(), () {
       return 2;
     });
     new CalendarWidget(
        //controller: controller,
        topColor: Colors.blue,
        onDateClick: (time) {
           print(time);
        },
        calendarMap: map,
      )

1. 效果

standard view