Accessibility action - SwiftUI

In SwiftUI, you can add the accessibility action modifier to provide a custom action to the view when assistive technologies are activated. You can add multiple custom actions by calling the same method on the view multiple times.

Additionally, you can define multiple custom actions by using the accessibility actions view modifier.

// Single custom accessibility action
var body: some View {
    ContentView()
        // Custom action
        .accessibilityAction(named: "Appt action") {
            // Logic
        }
}
// Multiple accessibility actions
var body: some View {
    ContentView()
        // Custom actions
        .accessibilityActions {
            Button("Appt action one") {
                // Logic
            }

            Button("Appt action two") {
                // Logic
            }
        }
}