code saving

This commit is contained in:
2021-06-26 21:58:57 +03:00
parent 49d56d7a91
commit 98bbc6a791
273 changed files with 1076 additions and 6921 deletions
@@ -0,0 +1,13 @@
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
}
}