Jérémy CROS
07/17/2023, 8:23 AMsemantic { customActions }
but it’s not quite what I want. The user needs to tap with 3 fingers and that brings up a list of custom actions.
I could do:
onClick = {
if (screenReaderOn) {
// Do visually impaired specific action
} else {
// Do regular action
}
}
But it seems wrong 😅
I know our iOS team has access to accessibilityAction
in SwiftUI, is there anything equivalent for us?
Thanks! 🙏ephemient
07/17/2023, 8:27 AMJérémy CROS
07/17/2023, 8:39 AM