Skip to content
Snippets Groups Projects
Commit a42c2594 authored by Sebastian's avatar Sebastian
Browse files

Put Image() call on one line

parent d6105aa6
Branches
Tags
1 merge request!7Import upstream updates to UI
Pipeline #7562 passed
...@@ -230,11 +230,7 @@ fun SearchTextField(searchValue: String, onValueChange: (String) -> Unit, onCont ...@@ -230,11 +230,7 @@ fun SearchTextField(searchValue: String, onValueChange: (String) -> Unit, onCont
@Composable @Composable
fun ProfileCircle(bitmap: ImageBitmap, size: Dp) { fun ProfileCircle(bitmap: ImageBitmap, size: Dp) {
Image( Image(bitmap, "image", Modifier.size(size).clip(CircleShape).border(2.dp, Color.White, CircleShape))
bitmap = bitmap,
"image",
modifier = Modifier.size(size).clip(CircleShape).border(2.dp, color = Color.White, CircleShape)
)
} }
@Composable @Composable
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment