I'm loading an image from external sources. I'd like to increase the size of the image without it stretching. I've tried using different Content Scales and the Aspect Ratio modifier to achieve this, but nothing seems to work. This is my current implementation.
Image(
painter = rememberImagePainter(imageUrl),
contentDescription = "",
contentScale = ContentScale.FillBounds,
modifier = Modifier
.size(156.dp)
.aspectRatio(1f)
.clip(RoundedCornerShape(8.dp)))