Hey, when using `SwipeToDismissBox`, has anyone ru...
# compose-android
e
Hey, when using
SwipeToDismissBox
, has anyone run into an accessibility issue, where the custom action does actually exist in the talkback menu, but talkback doesn't announce that "Custom actions available"?
Copy code
SwipeToDismissBox(
        state = swipeToDismissBoxState,
        modifier =
            modifier.semantics(mergeDescendants = true) {
                customActions =
                    listOf(
                        CustomAccessibilityAction(label = "Action label") {
                            action()
                            true
                        },
                    )
            },