<Image Padding Issue: Why Doesn't the Image Fill t...
# stackoverflow
r
Image Padding Issue: Why Doesn't the Image Fill the Top Left and Bottom Left Corners I have the following code below : Card( modifier = modifier .fillMaxWidth() .height(74.dp), shape = RoundedCornerShape(12.dp), elevation = elevation ) { Row( modifier = Modifier .fillMaxSize() .background(backgroundColor) ) { Box( modifier = Modifier .fillMaxHeight() // Ensure it takes up full height...