Ayden
06/20/2018, 9:30 AMtextViewLogin = findViewById(R.id.button_login)
textViewLogin.setOnClickListener {
// No error.
}
textViewLogin = findViewById<TextView>(R.id.button_login).setOnClickListener {
/*
Type mismatch
Require: View
Found: Unit
*/
}