Structure
FormConfiguration
public struct FormConfiguration
A type to configure a FormViewController.
You can use this type to configure many things on a form such as how the action button is displayed in the form.
Relationships
Nested Types
FormConfiguration.ActionButtonStyle
Styles that the Form can support.
FormConfiguration.TextInputConfiguration
FormConfiguration.DateInputConfiguration
Initializers
init(actionButtonStyle:actionButtonTitle:actionButtonTapped:)
public init(actionButtonStyle: ActionButtonStyle, actionButtonTitle: String = "Save", actionButtonTapped: @escaping (() -> Void))
Properties
actionButtonStyle
public private(set) var actionButtonStyle: ActionButtonStyle
The style the Form will use to display the action button.
actionButtonTapped
public var actionButtonTapped: () -> Void
The closure that is called when the action button is tapped.