11
Kotlin addTextChangeListener lambda?
Como você constrói uma expressão lambda para EditText addTextChangeListener em Kotlin? Abaixo dá um erro: passwordEditText.addTextChangedListener { charSequence -> try { password = charSequence.toString() } catch (error: Throwable) { raise(error) } }