Form
Last updated
Last updated
Forms are simple and require almost no work to set up. Simply create an object with the form fields you need and pass it to the <Form>
component. You can render any input type you need – from text boxes to pickers and sliders.
buttonText
submit button label
optional
string
callback
executed after a successful submit
optional
function
data
form object (see below)
required
object
method
HTTP request type
optional
string
style
custom style
optional
style object
submitOnChange
submit the form on each input change
optional
boolean
url
url to send the form to
optional
string
When constructing a form object, the outer key is the input name which is assigned an object with any combination of input props.
default
default value
optional
string
errorMessage
overrides the default error message
optional
string
label
input label
optional
string
max
maximum value on number input
optional
integer
min
minimum value on number input
optional
integer
name
input name
required
string
options
array of strings for a picker
required
array
placeholder
placeholder text
optional
string
required
determines if a value is required
optional
boolean
step
increment step amount for slider
optional
number
type
input type
required
text, email, password, number, url, phone, hidden, picker, date, time, switch, slider
value
initial value
optional
string
When your form is submitted to the server, Gravity will optimise the request and only send the name/value pairs, so on the server you can access a value using:
To show an error on a specific form input, throw an error on the server with an inputError
key and the input name.