Skip to content

Commit

Permalink
fix(List): Make list chevron accesibility identifier visible and conf…
Browse files Browse the repository at this point in the history
…igurable (#333)
  • Loading branch information
alexanegon authored Jan 30, 2024
1 parent e653470 commit 28967aa
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,15 @@ public class NavigationPresetView: UIStackView {
}
}

public var setAccessibilityIdentifier: String? {
get {
accessibilityIdentifier
}
set {
accessibilityIdentifier = newValue
}
}

override public var tintColor: UIColor! {
get {
super.tintColor
Expand Down Expand Up @@ -67,6 +76,7 @@ private extension NavigationPresetView {
spacing = 16

imageView.tintColor = .textSecondary
isAccessibilityElement = true

addArrangedSubview(imageView)
}
Expand Down

0 comments on commit 28967aa

Please sign in to comment.