I am curious why this package decided to create a new prop for accessibility hidden.
For android and iOS we already have these props if I want to hide it for accessibility:
accessibilityElementsHidden={true} // iOS
importantForAccessibility="no-hide-descendants" // android
Now with the most recent change we have to add a third prop?
accessibilityHidden={true}
Is there a particular reason we would keep it seperate from the other two (ios and android)?