I am using the following code to display an image.
AsyncImage(
model = createImageUrl(audio.image_path),
contentDescription = "Song Artwork",
modifier = Modifier.fillMaxHeight()
.aspectRatio(1f)
.padding(horizontal = 4.dp),
placeholder = rememberVectorPainter(image = Icons.Outlined.MusicNote)
)
The placeholder image is not being shown. Howeve, if I use placeHolder = painterResource(R.drawable.someDrawableInMyResource), the drawable is being shown when image is loaded.
What am I doing wrong?
I used this workaround and this works. I am open for another clean suggestions.