Package-level declarations
Types
Link copied to clipboard
data class PainterImageItem(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 painter image item that can be attached to a canvas or document. This class manages properties such as position, scaling, and transformations for painter images.
Link copied to clipboard
data class PainterImageProperty(val size: DpSize, val painter: Painter?, val color: Color, val alignment: Alignment, val contentScale: ContentScale, val alpha: Float, val colorFilter: ColorFilter?) : Property
Represents the properties of a painter image used in a drawable element. This class defines various attributes such as size, alignment, color properties, and painting content.