Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. ....
  2. FlatButton(
  3. child: Text("Save"),
  4. onPressed: () {
  5. _movieCollection.document().setData({
  6. "name": _textMovieController.text,
  7. "votes": 0
  8. }).whenComplete(() => Navigator.of(context).pop());
  9. },
  10. ....
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement