CombinedModifier
class CombinedModifier : Modifier
kotlin.Any | |
↳ | androidx.compose.ui.CombinedModifier |
A node in a Modifier chain. A CombinedModifier always contains at least two elements; a Modifier outer that wraps around the Modifier inner.
Summary
Public constructors | |
---|---|
A node in a Modifier chain. |
Public methods | |
---|---|
Boolean |
all(predicate: (Modifier.Element) -> Boolean) Returns |
Boolean |
any(predicate: (Modifier.Element) -> Boolean) Returns |
Boolean | |
R |
foldIn(initial: R, operation: (R, Modifier.Element) -> R) Accumulates a value starting with initial and applying operation to the current value and each element from outside in. |
R |
foldOut(initial: R, operation: (Modifier.Element, R) -> R) Accumulates a value starting with initial and applying operation to the current value and each element from inside out. |
Int |
hashCode() |
String |
toString() |
Inherited functions | |
---|---|
Inherited extension functions | |||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
From androidx.compose.foundation.layout
|