Created
April 12, 2025 14:26
-
-
Save bartekpacia/96b529c930055072b16530e1d9de608c 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
@Composable | |
fun ScopesSample() { | |
Column(Modifier.fillMaxWidth()) { | |
Text("Hello") | |
Text("Porto") | |
Text( | |
modifier = Modifier.align(Alignment.End), // Alignment.Top will not compile | |
text = "xd" | |
) | |
} | |
Row(Modifier.fillMaxHeight()) { | |
Text("Hello") | |
Text("Porto") | |
Text( | |
modifier = Modifier.align(Alignment.Top), // Alignment.End will not compile | |
text = "xd" | |
) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment