In SwiftUI with iOS I know you can do the following to have the keyboard auto suggest an OTP that arrives by SMS:
TextField("OTP", text: $otp)
.keyboardType(.numberPad)
.textContentType(.oneTimeCode)
In my app I'm using a custom number pad. Is it possible instead to fetch the OTP without using the keyboard so I can auto populate the custom fields myself automatically?