aleksanderwozniak / table_calendar

Highly customizable, feature-packed calendar widget for Flutter
Apache License 2.0
1.77k stars 974 forks source link

This PR fixes ADA screen reader issues for days outside the current month in the calendar. #885

Open queendevelopers opened 4 weeks ago

queendevelopers commented 4 weeks ago

Previously, the screen reader would announce "Text" on iOS for outside days when visibility is set to false, and on Android, users were able to tap the blank cells. This PR resolves these issues by returning a Container widget at the earliest possible stage. As a result, no GestureDetector is created, and the cells are not tappable. This ensures a better user experience and ADA compliance. Thank you.