PlayerAndroid/app/src/main/java/code/name/monkey/retromusic/extensions/InsetsExtensions.kt

8 lines
227 B
Kotlin

package code.name.monkey.retromusic.extensions
import androidx.core.view.WindowInsetsCompat
fun WindowInsetsCompat?.safeGetBottomInsets(): Int {
return this?.getInsets(WindowInsetsCompat.Type.systemBars())?.bottom ?: 0
}