Rename extension function to avoid confusion with androidx function

This commit is contained in:
arkon
2022-02-12 11:23:10 -05:00
parent d8719ceee9
commit 790d7b9170
2 changed files with 3 additions and 3 deletions

View File

@@ -262,7 +262,7 @@ inline fun <reified T : Drawable> T.copy(context: Context): T? {
}
}
fun View?.isVisible(): Boolean {
fun View?.isVisibleOnScreen(): Boolean {
if (this == null) {
return false
}