9 lines
260 B
Kotlin
9 lines
260 B
Kotlin
package eu.kanade.tachiyomi.util
|
|
|
|
import android.content.res.Resources
|
|
|
|
val Int.pxToDp: Int
|
|
get() = (this / Resources.getSystem().displayMetrics.density).toInt()
|
|
|
|
val Int.dpToPx: Int
|
|
get() = (this * Resources.getSystem().displayMetrics.density).toInt() |