You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently it's not possible to apply shape clips or elevation to the internal AsyncImage as the modifier on ZoomableAsyncImage() applies them to the whole layout
The text was updated successfully, but these errors were encountered:
I'm going to partially address this using 0347c53. It's a low level API for observing content bounds that can be used for drawing decorations around the content. Here's an example test that draws a border around the content (screenshot). I haven't tried it out, but you should also be able to apply clipping and draw drop shadows. I'll probably add a Modifier.clipToZoomableBounds(zoomableState) to make this easier.
another thing I'd like to do is use the blur() modifier, but that needs to apply on the image itself as well
This should already be possible! Does it not work for you?
Currently it's not possible to apply shape clips or elevation to the internal
AsyncImage
as the modifier onZoomableAsyncImage()
applies them to the whole layoutThe text was updated successfully, but these errors were encountered: