You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You need to upgrade to "provider: ^5.0.0" in pubspec. yaml.
Add "listen: false" parameter when you call Provider.of(context) in line 49 of add_task_screen.dart
so it looks like this: Provider.of(context, listen: false)
Change the 'builder' paramater of ChangeNotifierProvider to 'create' in line 12 of main.dart
so it looks like this: create: (context) => TaskData()
So far it works for me on MacOS Big Sur 11.2.2 M1, flutter 2.2, Xcode 12.5. Any other errors you may encounter, try to search from Google, StackOverflow, Github, etc. Thanks!
The code does not run on Flutter 2.0
The text was updated successfully, but these errors were encountered: