One-time password (OTP) for SwiftUI.
struct MyView: View {
@StateObject private var viewModel = SomeViewModel()
var body: some View {
OTPView(text: viewModel.code, error: viewModel.codeError) { code in
viewModel.verification(with: code)
}
}
}
- OTP is distributed under the MIT License.