Skip to content

Instantly share code, notes, and snippets.

@libliboom
Created February 9, 2021 02:39
Show Gist options
  • Save libliboom/57bd2177487c75ed2bb4d5c1e471c493 to your computer and use it in GitHub Desktop.
Save libliboom/57bd2177487c75ed2bb4d5c1e471c493 to your computer and use it in GitHub Desktop.
inline class Dp(val dp: Int) {
fun toPx() = TypedValue.applyDimension(
TypedValue.COMPLEX_UNIT_DIP, dp.toFloat(), Resources.getSystem().displayMetrics
).toInt()
}
inline val Int.dp
get() = Dp(this).toPx()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment