Skip to content

Instantly share code, notes, and snippets.

@pauloaapereira
Created July 23, 2021 16:02
Show Gist options
  • Save pauloaapereira/2aa415ec0e4f417f7d980d8e14e8f968 to your computer and use it in GitHub Desktop.
Save pauloaapereira/2aa415ec0e4f417f7d980d8e14e8f968 to your computer and use it in GitHub Desktop.
Declarative UI Brief Analysis
Column(
modifier = Modifier.fillMaxSize(),
horizontalAlignment = Alignment.CenterHorizontally,
verticalArrangement = Arrangement.Center
) {
Text(
text = "Text1",
color = Color.Black,
fontSize = 21.sp
)
Text(
text = "Text2",
color = Color.Black,
fontSize = 21.sp
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment