Package-level declarations

Functions

Link copied to clipboard
fun StickyImage(modifier: Modifier = Modifier, property: ImageBitmapProperty, image: ImageBitmapItem, onStickyMoved: (Offset) -> Unit, onZoomChanged: (String, Float, Offset) -> Unit, onDeleteSticky: (ImageBitmapItem) -> Unit)

A composable function that represents a sticky image bitmap, which can be moved, zoomed, or deleted. This function displays an image using the provided ImageBitmapProperty and ImageBitmapItem.

fun StickyImage(modifier: Modifier = Modifier, property: VectorImageProperty, image: VectorImageItem, onStickyMoved: (Offset) -> Unit, onZoomChanged: (String, Float, Offset) -> Unit, onDeleteSticky: (VectorImageItem) -> Unit)

A composable function that represents a sticky vector image, which can be moved, zoomed, or deleted. This function displays an image using the provided VectorImageProperty and VectorImageItem.

fun StickyImage(modifier: Modifier = Modifier, property: PainterImageProperty, image: PainterImageItem, onStickyMoved: (Offset) -> Unit, onZoomChanged: (String, Float, Offset) -> Unit, onDeleteSticky: (PainterImageItem) -> Unit)

A composable function that represents a sticky image, which can be moved, zoomed, or deleted. This function displays an image using the provided PainterImageProperty and PainterImageItem.