rememberStickyItemController

fun rememberStickyItemController(postItProperty: PostItProperty = PostItProperty.DEFAULT, painterImageProperty: PainterImageProperty = PainterImageProperty.DEFAULT, vectorImageProperty: VectorImageProperty = VectorImageProperty.DEFAULT, bitmapImageProperty: ImageBitmapProperty = ImageBitmapProperty.DEFAULT, textBoxProperty: TextBoxProperty = TextBoxProperty.DEFAULT): StickyItemController

A Composable function to create and remember an instance of StickyItemController. This controller manages various properties for sticky items, such as Post-its, images, and text boxes. It provides the ability to update the properties and manage the state of each sticky item.

Return

An instance of StickyItemController that manages sticky items.

Parameters

postItProperty

The initial properties of a Post-it note.

painterImageProperty

The initial properties of a painter image.

vectorImageProperty

The initial properties of a vector image.

bitmapImageProperty

The initial properties of a bitmap image.

textBoxProperty

The initial properties of a text box.