Skip to content

Instantly share code, notes, and snippets.

@svsq
Created November 25, 2022 08:21
Show Gist options
  • Save svsq/7c50bc5eae614a2bf070537b33e25af0 to your computer and use it in GitHub Desktop.
Save svsq/7c50bc5eae614a2bf070537b33e25af0 to your computer and use it in GitHub Desktop.
Number extensions
// converts Dp to Pixels
val Number.toPixels get() = TypedValue.applyDimension(
TypedValue.COMPLEX_UNIT_DIP,
this.toFloat(),
Resources.getSystem().displayMetrics)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment