commonMain.com.huanshankeji.compose.ui.Modifier.kt Maven / Gradle / Ivy
package com.huanshankeji.compose.ui
expect interface Modifier {
open fun foldIn(initial: R, operation: (R, Element) -> R): R
open infix fun then(other: Modifier): Modifier
interface Element : Modifier
companion object : Modifier
}
/**
* This serves as a shortcut for code completion and an alternative name when you prefer another type taking the name `Modifier` in a file.
* In most cases, it's recommended to use [Modifier] directly.
*/
typealias CommonModifier = Modifier
© 2015 - 2025 Weber Informatics LLC | Privacy Policy