Search code examples
flutterdarttable-calendar

how to disable past day on table calendar flutter


i use package table calendar, how to disable table calendar past day on flutter if on week view hide all past day on mont view grey all past day on this month and disable to past month

enter image description here


Solution

  • showDatePicker(
                                        context: context,
                                        initialDate: DateTime.now(),
                                        firstDate: DateTime.now(),
                                        lastDate: DateTime(DateTime.now().year + 5),
    ),