Meshtastic-Android/app/src/main/java/com/geeksville/mesh/util/ModifierExtensions.kt

11 lines
349 B
Kotlin
Raw Normal View History

package com.geeksville.mesh.util
import androidx.compose.ui.Modifier
/**
* Conditionally applies the [action] to the receiver [Modifier], if [precondition] is true.
* Returns the receiver as-is otherwise.
*/
inline fun Modifier.thenIf(precondition: Boolean, action: Modifier.() -> Modifier): Modifier =
if (precondition) action() else this