Page URL: https://flutter-es.io/docs/cookbook/navigation/returning-data.html
Page source: https://github.com/flutter-es/website/tree/dash/src_es/docs/cookbook/navigation/returning-data.md
Los ejemplos de las páginas en castellano no funcionan. Los que están en inglés sí.
Por ejemplo, esto no funciona ya:
Scaffold.of(context)
..removeCurrentSnackBar()
lo correcto es:
ScaffoldMessenger.of(context)
..removeCurrentSnackBar()
(También hay RaisedButton).
Page URL: https://flutter-es.io/docs/cookbook/navigation/returning-data.html
Page source: https://github.com/flutter-es/website/tree/dash/src_es/docs/cookbook/navigation/returning-data.md
Los ejemplos de las páginas en castellano no funcionan. Los que están en inglés sí.
Por ejemplo, esto no funciona ya:
Scaffold.of(context)
..removeCurrentSnackBar()
lo correcto es:
ScaffoldMessenger.of(context)
..removeCurrentSnackBar()
(También hay RaisedButton).