Skip to content

Latest commit

 

History

History
14 lines (13 loc) · 281 Bytes

DrawableExtensions.md

File metadata and controls

14 lines (13 loc) · 281 Bytes

DrawableExtensions.kt

/**
* Returns a compat drawable with tint added
*/
fun Drawable.withTint(colorInt: Int): Drawable {
   return with(this) {
       DrawableCompat.wrap(this).apply {
           DrawableCompat.setTint(this, colorInt)
       }
   }
}