Hi, I have a discussion with my colleague about us...
# android
l
Hi, I have a discussion with my colleague about usage of kotlin properties in android view facades. I would use properties like this:
Copy code
interface UserDetailsView {
  var name: String
  var email: String
  var admin: Boolean
}
And he would argue that I should use plain methods like:
fun setName(name: String)
etc... What are your opinions? 🙂