datetimepicker icon indicating copy to clipboard operation
datetimepicker copied to clipboard

Dates inside datepicker are not accessible using voiceover in ios devices.

Open aayugupta20 opened this issue 8 months ago • 0 comments

While using date picker in application, it is found that focus does not reach to individual dates in the calendar while using voiceover hence violating WCAG 2.1.1 criteria. Providing the sample code as how we are rendering Datepicker-

<DateTimePicker value={value ? new Date(value) : new Date()} mode="date" display={Platform.OS === 'ios' ? 'inline' : 'default'} minimumDate={minDate && new Date(minDate)} maximumDate={maxDate && new Date(maxDate)} onChange={(e, val) => { handlePickerChange(val); }} />

aayugupta20 avatar Apr 07 '25 03:04 aayugupta20