Datepicker is not opening

Issue I created a datepicker function to select the date after the service date. But [ERROR:flutter/runtime/dart_vm_initializer.cc(41)] Unhandled Exception: ‘package:flutter/src/material/date_picker.dart’: Failed assertion: line 185 pos 5: ‘selectableDayPredicate == null || selectableDayPredicate(initialDate)’: Provided initialDate 2024-05-22 00:00:00.000 must satisfy provided selectableDayPredicate. class ScheduleServiceView

Continue reading

Material Date Range Picker selection color formatting

Issue When you select two date in the range picker the in-between dates get highlighted. How do i change the color of the in-between dates? Solution You can define a style as: <style name=”MaterialCalendarTheme_RangeFill” parent=”ThemeOverlay.MaterialComponents.MaterialCalendar”> <item name=”materialCalendarStyle”>@style/MyMaterialCalendar</item> </style> <style name=”MyMaterialCalendar”

Continue reading