ComposeType

interface ComposeType<T>(source)

Represents a property that can be included translated to a Compose declaration.

All classes or objects that represent a compose-declarable property should implement this interface.

Example implementing classes in the LinkedList module include PathFillType, StrokeCap, StrokeJoin etc.

Inheritors

Properties

Link copied to clipboard
abstract val imports: Set<String>
Link copied to clipboard
abstract val name: String
Link copied to clipboard
abstract val value: T

Functions

Link copied to clipboard
Link copied to clipboard
abstract fun toCompose(): String?

Provides a way to get the canonical string representation of the ComposeType implementation.