mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-03-29 12:12:15 +00:00
6 lines
162 B
Kotlin
6 lines
162 B
Kotlin
package com.topjohnwu.magisk.extensions
|
|
|
|
import android.os.Handler
|
|
import android.os.Looper
|
|
|
|
fun ui(body: () -> Unit) = Handler(Looper.getMainLooper()).post(body) |