Skip to content

Instantly share code, notes, and snippets.

@linreal
Created January 25, 2026 13:48
Show Gist options
  • Select an option

  • Save linreal/09d025872f36deff30a08db6110b5923 to your computer and use it in GitHub Desktop.

Select an option

Save linreal/09d025872f36deff30a08db6110b5923 to your computer and use it in GitHub Desktop.
// Optimized: single source of truth for spacing
Card {
Column(
modifier = Modifier.padding(32.dp),
verticalArrangement = Arrangement.spacedBy(8.dp) // built-in spacing
) {
Text("Breaking News")
Text("Latest updates from the tech world...")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment