AsyncImage
A composable that executes an ImageRequest asynchronously and renders the result.
Parameters
Either an ImageRequest or the ImageRequest.data value.
Text used by accessibility services to describe what this image represents. This should always be provided unless this image is used for decorative purposes, and does not represent a meaningful action that a user can take.
Modifier used to adjust the layout algorithm or draw decoration content.
A Painter that is displayed while the image is loading.
A Painter that is displayed when the image request is unsuccessful.
A Painter that is displayed when the request's ImageRequest.data is null.
Called when the image request begins loading.
Called when the image request completes successfully.
Called when the image request completes unsuccessfully.
Optional alignment parameter used to place the AsyncImagePainter in the given bounds defined by the width and height.
Optional scale parameter used to determine the aspect ratio scaling to be used if the bounds are a different size from the intrinsic size of the AsyncImagePainter.
Optional opacity to be applied to the AsyncImagePainter when it is rendered onscreen.
Optional ColorFilter to apply for the AsyncImagePainter when it is rendered onscreen.
Sampling algorithm applied to a bitmap when it is scaled and drawn into the destination.
If true, clips the content to its bounds. Else, it will not be clipped.
A composable that executes an ImageRequest asynchronously and renders the result.
Parameters
Either an ImageRequest or the ImageRequest.data value.
Text used by accessibility services to describe what this image represents. This should always be provided unless this image is used for decorative purposes, and does not represent a meaningful action that a user can take.
Modifier used to adjust the layout algorithm or draw decoration content.
A callback to transform a new State before it's applied to the AsyncImagePainter. Typically this is used to modify the state's Painter.
Called when the state of this painter changes.
Optional alignment parameter used to place the AsyncImagePainter in the given bounds defined by the width and height.
Optional scale parameter used to determine the aspect ratio scaling to be used if the bounds are a different size from the intrinsic size of the AsyncImagePainter.
Optional opacity to be applied to the AsyncImagePainter when it is rendered onscreen.
Optional ColorFilter to apply for the AsyncImagePainter when it is rendered onscreen.
Sampling algorithm applied to a bitmap when it is scaled and drawn into the destination.
If true, clips the content to its bounds. Else, it will not be clipped.