https://kotlinlang.org logo
#compose-ios
Title
# compose-ios
s

Shoaib khalid

11/13/2023, 4:11 PM
I've a png in my resources folder. It works well on android but doesn't work on ios.
Copy code
Image(
            modifier = Modifier.fillMaxSize(),
            painter = painterResource("img_artist_tamayo.png"),
            contentDescription = null,
            contentScale = ContentScale.Crop
        )
2 Views