mirror of
https://github.com/libre-tube/LibreTube.git
synced 2025-01-08 10:30:30 +05:30
10 lines
293 B
Kotlin
10 lines
293 B
Kotlin
package com.github.libretube.extensions
|
|
|
|
import android.content.Intent
|
|
import android.os.Parcelable
|
|
import androidx.core.content.IntentCompat
|
|
|
|
inline fun <reified T : Parcelable> Intent.parcelableExtra(key: String?): T? {
|
|
return IntentCompat.getParcelableExtra(this, key, T::class.java)
|
|
}
|