Created
January 25, 2026 13:48
-
-
Save linreal/09d025872f36deff30a08db6110b5923 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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