-
- All Implemented Interfaces:
-
androidx.compose.foundation.layout.BoxScope
@Immutable() public interface SubcomposeAsyncImageScope implements BoxScopeA scope for the children of SubcomposeAsyncImage.
-
-
Method Summary
Modifier and Type Method Description abstract AsyncImagePaintergetPainter()The painter that is drawn by SubcomposeAsyncImageContent. abstract StringgetContentDescription()The content description for SubcomposeAsyncImageContent. abstract AlignmentgetAlignment()The default alignment for any composables drawn in this scope. abstract ContentScalegetContentScale()The content scale for SubcomposeAsyncImageContent. abstract FloatgetAlpha()The alpha for SubcomposeAsyncImageContent. abstract ColorFiltergetColorFilter()The color filter for SubcomposeAsyncImageContent. abstract BooleangetClipToBounds()If true, applies clipToBounds to SubcomposeAsyncImageContent. -
-
Method Detail
-
getPainter
abstract AsyncImagePainter getPainter()
The painter that is drawn by SubcomposeAsyncImageContent.
-
getContentDescription
abstract String getContentDescription()
The content description for SubcomposeAsyncImageContent.
-
getAlignment
abstract Alignment getAlignment()
The default alignment for any composables drawn in this scope.
-
getContentScale
abstract ContentScale getContentScale()
The content scale for SubcomposeAsyncImageContent.
-
getColorFilter
abstract ColorFilter getColorFilter()
The color filter for SubcomposeAsyncImageContent.
-
getClipToBounds
abstract Boolean getClipToBounds()
If true, applies clipToBounds to SubcomposeAsyncImageContent.
-
-
-
-