-
- All Implemented Interfaces:
@Immutable() public interface ImagePlugin
A pluggable compose interface that will be executed for loading images.
You can implement your own image plugin that will be composed with Image Composable functions by implementing one of ImagePlugin.PainterPlugin, ImagePlugin.LoadingStatePlugin, ImagePlugin.SuccessStatePlugin, or ImagePlugin.FailureStatePlugin
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceImagePlugin.PainterPluginA pinter plugin interface to be composed with the given Painter.
public interfaceImagePlugin.LoadingStatePluginA pluggable image loading state plugin that will be composed when the state is ImageLoadState.Loading.
public interfaceImagePlugin.SuccessStatePluginA pluggable image loading state plugin that will be composed when the state is ImageLoadState.Success.
public interfaceImagePlugin.FailureStatePluginA pluggable image loading state plugin that will be composed when the state is ImageLoadState.Failure.
-