We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Right now we have this signature for TextInputValidationFunc:
TextInputValidationFunc
func(newInputText string) (bool, *string)
Is there a reason to avoid a more idiomatic form like the following?
func(newInputText string) (string, bool)