coil-composable
coil-composable copied to clipboard
A simple library to load images and gifs into a Jetpack Compose Image composable using Coil.
A simple library to load images and gifs into a Jetpack Compose Image composable using Coil.
How to get
add jitpack repo:
repositories {
maven { url "https://jitpack.io" }
}
*.kts
repositories {
maven { setUrl("https://jitpack.io") }
}
add dependency:
implementation 'com.github.luca992:coil-composable:{version}'
*.kts:
implementation("com.github.luca992:coil-composable:{version}")
How to use
CoilImage("url")
or if you want more control
CoilImage("url") {
// this LoadRequestBuilder
placeholder(
ResourcesCompat.getDrawable(
context.resources,
R.drawable.loading_indicator,
null
)
)
}