admin管理员组

文章数量:1314504

In Jetpack Compose it's possible to indicate to TalkBack that your text is a header:

Text(
    text = "Heading text",
    modifier = Modifier.semantics {
        heading()
    }
)

Is it possible to also somehow indicate which level of header it is? Like you can have h1, h2, h3, etc...

iOS has AccessibilityHeadingLevel Does Android have an equivalent?

本文标签: Android Compose set header level for accessibilityStack Overflow