Package-level declarations

Types

Link copied to clipboard
data class VectorImageItem(val id: String = Uuid.random().toString(), val type: StickyType, val isFocus: Boolean = false, val firstPoint: Offset, val translate: Offset = Offset.Zero, val scaleFactor: Float = 1.0f, val scaleOffset: Offset = Offset.Zero, val property: Property) : Attachable

Represents a vector image item that can be attached to a canvas or document. This class manages properties such as position, scaling, and transformations.

Link copied to clipboard
data class VectorImageProperty(val size: DpSize, val imageVector: ImageVector?, val color: Color, val alignment: Alignment, val contentScale: ContentScale, val alpha: Float, val colorFilter: ColorFilter?) : Property

Represents the properties of a vector image used in a drawable element. This class defines various attributes such as size, alignment, and color properties.