12 lines
360 B
Kotlin

package com.simplemobiletools.clock.extensions
import android.widget.TextView
import com.simplemobiletools.commons.extensions.applyColorFilter
fun TextView.colorCompoundDrawable(color: Int) {
compoundDrawables.filterNotNull().forEach { drawable ->
drawable.applyColorFilter(color)
setCompoundDrawables(drawable, null, null, null)
}
}