ImageView

fun ImageView(modifier: Modifier = Modifier, @DrawableRes resource: Int)

Compose Wrapper of android.widget.ImageView to show the image.

Parameters

modifier

: Modifier

resource

: Int drawable resource id to set the image.


fun ImageView(modifier: Modifier = Modifier, drawable: Drawable)

Compose Wrapper of android.widget.ImageView to show the image.

Parameters

modifier

: Modifier

drawable

: Drawable is directly used to set the image.