Created
October 4, 2020 11:16
-
-
Save catalinghita8/6b0e3d8e1c87468138ac425c9250d3c3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @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