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

Remove unneeded Row() in ProfileCircle()

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