Skip to content

Instantly share code, notes, and snippets.

@catalinghita8
Created October 4, 2020 11:16
Show Gist options
  • Select an option

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

Select an option

Save catalinghita8/6b0e3d8e1c87468138ac425c9250d3c3 to your computer and use it in GitHub Desktop.
@Composable
fun ProfilePictureComposable(onlineStatus: MutableState<Boolean>,
pictureDrawableId: Int) {
Card( ...
border = BorderStroke(
2.dp,
color = if (onlineStatus.value)
Helper.getGreenColor()
else
Helper.getRedColor()
), ...
) { ... }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment