← Back to notebook index

Notebook Topic

Hig Material

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

// iOS: dynamic type friendly text
Text("Continue")
  .font(.headline)
  .padding(.vertical, 12)

Kotlin

Button(
  onClick = onContinue,
  modifier = Modifier.heightIn(min = 48.dp)
) { Text("Continue") }

Reference links

Related topics