13 lines
259 B
Kotlin
13 lines
259 B
Kotlin
package com.meloda.fast.extensions
|
|
|
|
import android.graphics.drawable.Drawable
|
|
import androidx.annotation.ColorInt
|
|
|
|
object DrawableExtensions {
|
|
|
|
fun Drawable?.tint(@ColorInt color: Int): Drawable? {
|
|
this?.setTint(color)
|
|
return this
|
|
}
|
|
|
|
} |