You are probably using the code example from here. They added dayBuilder to showcase how you can customize the widget for certain days. To fix this, remove the dayBuilder from your config.
CalendarDatePicker2WithActionButtonsConfig(
...
dayBuilder: ..., // remove this
)
I hope you are using calendar_date_picker2:^0.5.3 package. If yes, please find the CalendarDatePicker2WithActionButtonsConfig function in the code below.
2
Answers
You are probably using the code example from here. They added
dayBuilder
to showcase how you can customize the widget for certain days. To fix this, remove thedayBuilder
from your config.I hope you are using calendar_date_picker2:^0.5.3 package. If yes, please find the CalendarDatePicker2WithActionButtonsConfig function in the code below.
Now, all you need to do is remove/comment the code below, and that will eliminate the dot under the date text.
Please verify, I trust this should resolve your concern.