Skip to content

Instantly share code, notes, and snippets.

@catalinghita8
Last active June 23, 2021 12:15
Show Gist options
  • Select an option

  • Save catalinghita8/d6a649a44cdaf741e2ad1cf729b5d7af to your computer and use it in GitHub Desktop.

Select an option

Save catalinghita8/d6a649a44cdaf741e2ad1cf729b5d7af to your computer and use it in GitHub Desktop.
@Composable
fun ProfileContentComposable() {
Column(
modifier = Modifier
.fillMaxHeight()
.padding(start = 8.dp),
verticalArrangement = Arrangement.aligned(Alignment.CenterVertically)
) {
Text("Catalin Ghita", fontWeight = FontWeight.Bold)
Text(
text = "Active now",
style = MaterialTheme.typography.body2
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment