You've already forked Magisk
mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-09-06 06:36:58 +00:00
8 lines
155 B
Kotlin
8 lines
155 B
Kotlin
package com.topjohnwu.magisk.extensions
|
|
|
|
import com.topjohnwu.magisk.utils.KObservableField
|
|
|
|
|
|
fun KObservableField<Boolean>.toggle() {
|
|
value = !value
|
|
} |