Custom Targets
If you need to load your image in something other than an ImageView, like the background
of a LinearLayout for example, you can do it by using the FireCoil
singleton:
val linearLayout: LinearLayout = ...
FireCoil.load(this, storageRef) {
target { drawable ->
linearLayout.background = drawable
}
}