StrokeJoin

@Serializable(with = StrokeJoinSerializer::class)
value class StrokeJoin : ComposeType<String> , MethodSizeAccountable(source)

This is a wrapper class for the StrokeJoin property of the Compose UI library.

The StrokeJoin inline class encapsulates the value of the stroke line join as a string, providing utility methods for conversion and string representation.

The class is defined as an inline class to minimize memory overhead.

The class comes with three predefined instances: Miter, Round, and Bevel, representing the three supported fill types in Android Compose.

The toString method is overridden to return the encapsulated string value.

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
open override val approximateByteSize: Int

Represents the approximate bytecode size accounted for by the current type or instruction within a method.

Link copied to clipboard
open override val imports: Set<String>
Link copied to clipboard
open override val name: String
Link copied to clipboard
open override val value: String

Functions

Link copied to clipboard
Link copied to clipboard
open override fun toCompose(): String?

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

Link copied to clipboard
open override fun toString(): String