SwiftUIFormValidator icon indicating copy to clipboard operation
SwiftUIFormValidator copied to clipboard

Declarative form validator for SwiftUI.

Results 8 SwiftUIFormValidator issues
Sort by recently updated
recently updated
newest added

Hi, I'm facing an error while using the SwiftUIFormValidator library during Azure DevOp Pipeline building process. I'm currently developing an app using Kotlin MultiPlatform Mobile. I'm using SwiftUIFormValidator for form...

I'm trying to setup a multilingual app with `Localizable.strings`. So far, the UI elements in SwiftUI all translate as expected. How do we get the validation messages to translate accordingly?

I have a custom toggle style that displays an empty circle when not enabled and a checked circle when enabled. ``` struct CheckToggleStyle: ToggleStyle { func makeBody(configuration: Configuration) -> some...

I'm migrating to the 1.0 version of the library and I'm a bit stuck. I have a couple of validations that previously used inline validations. For example, I have a...

#### Description: Hi, I am facing an issue where the validation function is being triggered multiple times upon any change in the input field. Specifically, my `print` statement within the...

Hi! I am trying to validate a picker and am a little stuck. I use the following inside the form ``` @FormField(inlineValidator: { value in guard value < 0 ||...

We recently updated our view model from using **@ObservableObject** to **@Observable**. The original code, which used ObservableObject, was working as expected and the latest value in **timeZoneInput** was correctly captured....

We are encountering the following issue in iOS 16 when using the .onReceive modifier with an ObservableObject: ``` .onReceive(form.manager.$allValid) { isValid in self.isSaveDisabled = !isValid } ``` The error message...