← Back to notebook index

Notebook Topic

Accessibility

English topic guide inspired by the original iOS Developer Notebook, expanded for both iOS and Android teams.

What this topic covers

Execution checklist

iOS implementation notes

Android implementation notes

Code examples

Swift

Button(action: save) {
    Image(systemName: "square.and.arrow.down")
}
.accessibilityLabel("Save draft")
.accessibilityHint("Stores your changes locally")

Kotlin

IconButton(
    onClick = onSave,
    modifier = Modifier.semantics {
        contentDescription = "Save draft"
    }
) { Icon(Icons.Default.Save, contentDescription = null) }

Reference links

Related topics