Add call link details screen scaffolding.

This commit is contained in:
Alex Hart
2023-04-21 10:48:42 -03:00
parent 5f7414e84c
commit bff8fc8230
14 changed files with 371 additions and 46 deletions

View File

@@ -29,4 +29,22 @@ class AvatarColorPair private constructor(
}
}
}
override fun equals(other: Any?): Boolean {
if (this === other) return true
if (javaClass != other?.javaClass) return false
other as AvatarColorPair
if (foregroundColor != other.foregroundColor) return false
if (backgroundColor != other.backgroundColor) return false
return true
}
override fun hashCode(): Int {
var result = foregroundColor
result = 31 * result + backgroundColor
return result
}
}