Benjamin
06/05/2024, 7:56 PMkamelConfig = KamelConfig {
httpFetcher(httpClient)
}
and calling KamelImage like this:
CompositionLocalProvider(LocalKamelConfig provides kamelConfig) {
KamelImage(
asyncPainterResource("<https://test.com/static>" + image.image),
image.alt_text,
contentScale = ContentScale.Fit,
modifier = Modifier.height(100.dp)
)
}
I'm not getting any error message but i'm also not getting my images. My client is correctly setup, I use it to get all the other data from the same server.