Skip to content

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

@aayugupta20

Description

@aayugupta20

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);
}}
/>

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions