English topic guide inspired by the original iOS Developer Notebook, expanded for both iOS and Android teams.
// iOS: dynamic type friendly text
Text("Continue")
.font(.headline)
.padding(.vertical, 12)
Button(
onClick = onContinue,
modifier = Modifier.heightIn(min = 48.dp)
) { Text("Continue") }