Skip to content

Instantly share code, notes, and snippets.

View muhammadawaisshan's full-sized avatar
😁
Focusing

Muhammad Awais muhammadawaisshan

😁
Focusing
View GitHub Profile
// Extension function to convert SDP dimension to pixels
fun Context.sdpToPx(sdpResourceId: Int): Float {
return TypedValue.applyDimension(
TypedValue.COMPLEX_UNIT_PX,
resources.getDimension(sdpResourceId),
resources.displayMetrics
)
}
fun Context.sdpToDp(sdpResourceId: Int): Float {