commonMain.app.cash.redwood.layout.modifier.Grow.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redwood-layout-modifiers Show documentation
Show all versions of redwood-layout-modifiers Show documentation
Multiplatform reactive UI using Kotlin and Jetpack Compose
The newest version!
@file:Suppress("DEPRECATION", "OVERRIDE_DEPRECATION")
package app.cash.redwood.layout.modifier
import app.cash.redwood.Modifier
import kotlin.Double
import kotlin.OptIn
import kotlin.Suppress
import kotlin.experimental.ExperimentalObjCName
import kotlin.native.ObjCName
@OptIn(ExperimentalObjCName::class)
@ObjCName(
"Grow",
exact = true,
)
public interface Grow : Modifier.ScopedElement {
public val `value`: Double
}