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
The ButtonIcon component, which uses Pressable, currently lacks appropriate accessibility props for React Native. Since it has no text, it needs to support screen readers properly to ensure an inclusive user experience.
Technical Details
Add accessibilityLabel to provide a textual description for screen readers.
Ensure accessibilityRole="button" is set for proper semantics.
Consider accessibilityHint if additional context is needed.
Verify with VoiceOver (iOS) and TalkBack (Android).
Acceptance Criteria
Screen readers properly announce the button’s function.
Users can navigate and activate the button using assistive technology.
Description
The
ButtonIcon
component, which usesPressable
, currently lacks appropriate accessibility props for React Native. Since it has no text, it needs to support screen readers properly to ensure an inclusive user experience.Technical Details
accessibilityLabel
to provide a textual description for screen readers.accessibilityRole="button"
is set for proper semantics.accessibilityHint
if additional context is needed.Acceptance Criteria
References
The text was updated successfully, but these errors were encountered: