Skip to content

Instantly share code, notes, and snippets.

@msert29
Last active July 4, 2018 10:36
Show Gist options
  • Save msert29/41b8b3db6ec4fcdfb6125afed5f0ccb1 to your computer and use it in GitHub Desktop.
Save msert29/41b8b3db6ec4fcdfb6125afed5f0ccb1 to your computer and use it in GitHub Desktop.
address.js
<TextInput
placeholder="Address"
maxLength={50}
onChangeText={streetName => this.setState({ streetName })}
/>
<TextInput
placeholder="City"
maxLength={58}
onChangeText={city => this.setState({ city })}
/>
<TextInput
placeholder="Postcode"
maxLength={8}
onChangeText={postcode => this.setState({ postcode })}
/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment