struct TextField<Label> where Label : View
- create a text field that binds to a bound value, using a to convert to and from this type.
init<S, F>(
_ title: S,
value : Binding<F.FormatInput>,
format : F,
prompt : Text? = nil
) where
S : StringProtocol,
F : ParseableFormatStyle,
F.FormatOutput == String