简体   繁体   中英

how can I add a custom calendar in flutter?

I want to develop an application that help elderly like remind them medication time, and I want to add custom calendar in home screen that show the day number and name. So, how can I add this calendar in flutter? enter image description here

similar to this package, date_picker_timeline

DatePicker(
        DateTime.now(),
        initialSelectedDate: DateTime.now(),
        selectionColor: Colors.black,
        selectedTextColor: Colors.white,
        onDateChange: (date) {
          // New date selected
          setState(() {
            _selectedValue = date;
          });
        },
      ),

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM