Skip to content

Instantly share code, notes, and snippets.

@coorasse
Last active May 22, 2020 14:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save coorasse/05cab5cf3fbe097d8be64083984b58a4 to your computer and use it in GitHub Desktop.
Save coorasse/05cab5cf3fbe097d8be64083984b58a4 to your computer and use it in GitHub Desktop.
TextFormField(
onSaved: (String value) {
myModel.street = value;
},
),
TextFormField(
onSaved: (String value) {
myModel.houseNo = value;
},
),
TextFormField(
onSaved: (String value) {
myModel.zip = value;
},
),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment