StylishVisuallyHidden

fun StylishVisuallyHidden(modifier: Modifier = Modifier, content: @Composable () -> Unit)

A visually hidden element that remains accessible to screen readers — the web "Visually Hidden" pattern from Chakra UI.

Renders content in a 1 dp, fully transparent box. The content is not visible on screen but keeps its semantics and remains focusable, so screen-reader-only labels and skip links can be composed with it.

Parameters

modifier

Modifier applied to the hidden box.

content

The content to hide visually.