androidMain.tech.skot.view.live.MutableSKLiveData.kt Maven / Gradle / Ivy
package tech.skot.view.live
import kotlin.reflect.KProperty
open class MutableSKLiveData(initialValue: D) : SKLiveData(initialValue) {
fun postValue(newVal: D) {
this.value = newVal
}
operator fun setValue(thisObj: Any?, property: KProperty<*>, value: D) {
this.value = value
}
operator fun getValue(thisObj: Any?, property: KProperty<*>) = this.value
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy