-
Notifications
You must be signed in to change notification settings - Fork 27.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
firebase-get-to-know-flutter/step_06 needs to dispose pf the textEditingController #115693
Comments
PTAL @ericwindmill |
This issue is assigned to @ericwindmill but has had no recent status updates. Please consider unassigning this issue if it is not going to be addressed in the near future. This allows people to have a clearer picture of what work is actually planned. Thanks! |
PTAL @ericwindmill |
This issue is assigned to @ericwindmill but has had no recent status updates. Please consider unassigning this issue if it is not going to be addressed in the near future. This allows people to have a clearer picture of what work is actually planned. Thanks! |
This issue is assigned to @ericwindmill but has had no recent status updates. Please consider unassigning this issue if it is not going to be addressed in the near future. This allows people to have a clearer picture of what work is actually planned. Thanks! |
PTAL @ericwindmill |
Fixed by flutter/codelabs#2256 |
Fixes [#115693 in flutter/flutter](flutter/flutter#115693)
In this codelab, there needs to be a call to dispose of the textEditingController
https://firebase.google.com/codelabs/firebase-get-to-know-flutter#6
https://github.com/flutter/codelabs/blob/main/firebase-get-to-know-flutter/step_06/lib/main.dart
class _GuestBookState extends State {
final _formKey = GlobalKey(debugLabel: '_GuestBookState');
final _controller = TextEditingController();
The text was updated successfully, but these errors were encountered: