English topic guide inspired by the original iOS Developer Notebook, expanded for both iOS and Android teams.
Button(action: save) {
Image(systemName: "square.and.arrow.down")
}
.accessibilityLabel("Save draft")
.accessibilityHint("Stores your changes locally")
IconButton(
onClick = onSave,
modifier = Modifier.semantics {
contentDescription = "Save draft"
}
) { Icon(Icons.Default.Save, contentDescription = null) }