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
{{ message }}
This repository has been archived by the owner on Apr 25, 2023. It is now read-only.
As-of v1.1.1 (with the new A11Y fixes), when using the swipe left/right methods of selecting items, we get the proper readout of the selected item:
mHowever, when trying to hover (tap) to select an item (not double-tap to select, just single tap to "read"), it simply "boops" to let you know that there's nothing there:
From a technical perspective, what's happening is that we are using a MaskedView to show the selected buttons over the unselected buttons. This allows us to do the trademark animation that we're using for the package.
However, despite using accessibilityElementsHidden={true}, Android refuses to read the button that's underneath the MaskedView, even when pointerEvents is set to 'none'
I tried for an hour to debug this but can't seem to figure out how to fix this issue.
The text was updated successfully, but these errors were encountered:
As-of
v1.1.1
(with the new A11Y fixes), when using the swipe left/right methods of selecting items, we get the proper readout of the selected item:mHowever, when trying to hover (tap) to select an item (not double-tap to select, just single tap to "read"), it simply "boops" to let you know that there's nothing there:
From a technical perspective, what's happening is that we are using a
MaskedView
to show the selected buttons over the unselected buttons. This allows us to do the trademark animation that we're using for the package.However, despite using
accessibilityElementsHidden={true}
, Android refuses to read the button that's underneath theMaskedView
, even whenpointerEvents
is set to'none'
I tried for an hour to debug this but can't seem to figure out how to fix this issue.
The text was updated successfully, but these errors were encountered: