ios-swiftui-accessibility-techniques icon indicating copy to clipboard operation
ios-swiftui-accessibility-techniques copied to clipboard

Demonstrates iOS SwiftUI Accessibility programming techniques using live good and bad examples that can be tested with VoiceOver and other AT. Includes documentation for developers explaining how to c...

Results 9 ios-swiftui-accessibility-techniques issues
Sort by recently updated
recently updated
newest added
trafficstars

![screenshot of bug](https://github.com/cvs-health/ios-swiftui-accessibility-techniques/assets/11997668/7436e627-52d5-46e0-9ac9-be85247049fe) bug aside, this app is wonderful! big thank you to the maintainers :)

I think having badges example in tabitem would add some good value. As, most homepages that will use tab bar will use the badges to indicate notifications or new information/updates.

Earlier today, I came across a question about heading level support on iOS in the #native-mobile channel on [web-a11y.slack.com](http://web-a11y.slack.com/). In the thread, "Genevieve" says > I just tested adding iOS...

Just like in web we expect accordions to have heading role. For disclosure group, we can achieve this by .accessibilityElement(children: .contain) and then .accessibilityLabel("The disclosure group text"). This will add...

IMO, .accessibilityValue is another valid technique to expose an input's helper text and error message. Unlike .accessibilityHint, I don't think users can disable the announcement of an element's .accessibilityValue. This...

I noticed that the "Error Validation" documentation file does not contain a link to the associated coding technique. I think providing a link in the documentation file would make the...

The data tables documentation is awesome! The only thing I hesitate on is the use of an .accessibilityHint to convey row/column information. The only reason I say that is because...

There are fantastic examples in this repo of using XCTest to perform accessibility related UI tests. I think it would be helpful to provide an overview in a separate markdown...

VoiceOver users currently navigate through the list of accessibility techniques is by swiping left and right, which could take a long time for techniques whose first letters are further down...