How do I upgrade an existing Flutter app? - Stack Overflow

PHOTO EMBED

Sun Dec 05 2021 07:45:02 GMT+0000 (Coordinated Universal Time)

Saved by @codegaur #dart

sdk: ">=2.12.0 <3.0.0"


Then follow the steps:

Run flutter upgrade in the terminal to upgrade Flutter
Run dart migrate to run the dart migration tool.
Solve all errors which the migration tool shows.
Run flutter pub outdated --mode=null-safety to print all outdated packages.
Run flutter pub upgrade --null-safety to upgrade all packages automatically.
Check the code for errors and solve them (Very important).
Run dart migrate again and it should now be successful. Follow the link to checkout the proposed changes.
Press the "Apply Migration" button.
Check the code for errors again and fix them.
content_copyCOPY

https://stackoverflow.com/questions/64797607/how-do-i-upgrade-an-existing-flutter-app