SubcomposeAsyncImageScope

A scope for the children of SubcomposeAsyncImage.

Properties

Link copied to clipboard
abstract val alignment: Alignment

The default alignment for any composables drawn in this scope.

Link copied to clipboard
abstract val alpha: Float
Link copied to clipboard
Link copied to clipboard
abstract val colorFilter: ColorFilter?

The color filter for SubcomposeAsyncImageContent.

Link copied to clipboard
abstract val contentDescription: String?

The content description for SubcomposeAsyncImageContent.

Link copied to clipboard

The content scale for SubcomposeAsyncImageContent.

Link copied to clipboard

The painter that is drawn by SubcomposeAsyncImageContent.

Functions

Link copied to clipboard
fun SubcomposeAsyncImageScope.SubcomposeAsyncImageContent(modifier: Modifier = Modifier, painter: Painter = this.painter, contentDescription: String? = this.contentDescription, alignment: Alignment = this.alignment, contentScale: ContentScale = this.contentScale, alpha: Float = this.alpha, colorFilter: ColorFilter? = this.colorFilter, clipToBounds: Boolean = this.clipToBounds)

A composable that draws SubcomposeAsyncImage's content with SubcomposeAsyncImageScope's properties.