You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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);
}}
/>
The text was updated successfully, but these errors were encountered:
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);
}}
/>
The text was updated successfully, but these errors were encountered: