mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-16 07:10:29 +05:30
11 lines
280 B
Kotlin
11 lines
280 B
Kotlin
|
package com.github.libretube.extensions
|
||
|
|
||
|
import androidx.fragment.app.Fragment
|
||
|
|
||
|
open class BaseFragment : Fragment() {
|
||
|
fun runOnUiThread(action: () -> Unit) {
|
||
|
if (!isAdded) return // Fragment not attached to an Activity
|
||
|
activity?.runOnUiThread(action)
|
||
|
}
|
||
|
}
|