@momo-kits/native-kits 0.157.1-beta.12-debug → 0.157.1-beta.13-debug
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/compose/build.gradle.kts
CHANGED
package/ios/Input/Input.swift
CHANGED
|
@@ -311,6 +311,10 @@ private struct SecureInputField: UIViewRepresentable {
|
|
|
311
311
|
textField.text = text
|
|
312
312
|
}
|
|
313
313
|
textField.isEnabled = !isDisabled
|
|
314
|
+
if textField.keyboardType != keyboardType {
|
|
315
|
+
textField.keyboardType = keyboardType
|
|
316
|
+
textField.reloadInputViews()
|
|
317
|
+
}
|
|
314
318
|
}
|
|
315
319
|
|
|
316
320
|
class Coordinator: NSObject, UITextFieldDelegate {
|