Closed mhozza closed 1 month ago
Issue details / Repro steps / Use case background:
We would like to show / hide some other UI based on the glide loading status. It would be great if Glide could expose observable loading state that could be used for this:
API Example:
val glideState = rememberGlideState() GlideImage(glideState, ...) if(glideState.status == Status.SUCCEEDED) { ShareButton(...) }
Looks like the GlideSubcomposition is good enough for this usecase.
Issue details / Repro steps / Use case background:
We would like to show / hide some other UI based on the glide loading status. It would be great if Glide could expose observable loading state that could be used for this:
API Example: