Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save catalinghita8/d2c8153b4eedae232eb5ea01d275ff0d to your computer and use it in GitHub Desktop.
@Composable
fun ProfilePictureComposable(pictureDrawableId: Int) {
Card( ... ) {
Image(
painter = painterResource(id = pictureDrawableId),
...
)
}
}
@Composable
fun ProfileContentComposable(name: String, lastActivityMinutes: Int) {
Column( ... ) {
Text(name, fontWeight = FontWeight.Bold)
Text(
text = "Active now",
...
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment