I need to create a specific label for braille displays in a View in SwiftUI because I want to represent an icon in braille from an image.
The accessibilityLabel value will be spoken by VoiceOver's voice but I need a braille representation to improve the UX for blind and deaf persons.
I found AXBrailleMap and AXBrailleMapRenderer but I don't find any sample code or any more detailed documentation about how to use them. The documentation is very poor for braille display support.
I tried to include AXBrailleMapRenderer protocol in an extension of my view and in the ViewModel to use NSObject as superclass but I could not get any success.
Can anybody help me to use AXBrailleMap and AXBrailleMapRender in SwiftUI?
Thanks in advance