working on google kotlin course where we have to add image to the app but I am having error

Viewed 8
@Composable
fun BirthdayGreetingWithImage(message : String,from : String){
    val image = painterResource(id = R.drawable.androidparty)
    Image(
        painter = image,
        contentDescription = null
    )

}

here the error is coming

Cannot access '<init>': it is package-private in 'Image'

enter image description here

0 Answers
Related