mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-12-04 23:45:23 +00:00
8 lines
148 B
Kotlin
8 lines
148 B
Kotlin
|
package com.topjohnwu.magisk.utils
|
||
|
|
||
|
import com.skoumal.teanity.util.KObservableField
|
||
|
|
||
|
|
||
|
fun KObservableField<Boolean>.toggle() {
|
||
|
value = !value
|
||
|
}
|