You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
EditText.textChanged { s ->... }
EditText.textChanged().doOnNext { s ->... }.subscribe()
EditText.validate(errorMessage ="The name should not be empty") { !it.isNullOrBlank() }
EditText.validateEmail { ... }
EditText.validateEmail("It's not valid email")
EditText.showPassword()
EditText.hidePassword()
TextView
// Set view gone while text is null or empty.TextView.setTextWithExistence("1234")
// Set view invislble while text is null or empty.TextView.setTextWithVisibility("5678")