-
Notifications
You must be signed in to change notification settings - Fork 100
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
.oneTimeCode #72
Comments
Does this support keyboard auto fill for onetime code? |
Hi guys, sorry for delay. |
@tkach @FarhanBykea dummyTextField
.rx
.text
.changed
.subscribe(onNext: {[weak self] text in
self?.otpTextField.text = text
})
.disposed(by: self.disposeBag) |
@FarshadJahanmanesh this can also be achieved by using property observer as I’m not currently using RXSwift. |
@FarhanBykea can this be done by creating a text field with code and put it above this control, Set its delegate, and assign text to this control got from delegate. |
Does it support textContentType = .oneTimeCode ??
The text was updated successfully, but these errors were encountered: