Skip to content

Instantly share code, notes, and snippets.

@skydoves
Created September 9, 2024 11:32
Show Gist options
  • Save skydoves/bd28e8f77577554a59abc1ddc87a7654 to your computer and use it in GitHub Desktop.
Save skydoves/bd28e8f77577554a59abc1ddc87a7654 to your computer and use it in GitHub Desktop.
imageui
@Immutable
@Serializable
data class ImageUi(
val title: String = "",
val url: String,
val size: DpSizeUi = DpSizeUi(0, 0),
val scaleType: String,
) : UiComponent
@Immutable
@Serializable
data class DpSizeUi(
val width: Int,
val height: Int
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment