Skip to content

Instantly share code, notes, and snippets.

@bartekpacia
Created April 12, 2025 14:26
Show Gist options
  • Save bartekpacia/96b529c930055072b16530e1d9de608c to your computer and use it in GitHub Desktop.
Save bartekpacia/96b529c930055072b16530e1d9de608c to your computer and use it in GitHub Desktop.
@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