Home > OS >  VSCode, Flutter - red underline
VSCode, Flutter - red underline

Time:09-22

Firstly, I was trying to import a project that contains a complete Webview and I was surprised that even after running flutter clean ; flutter pub get I would still get errors.

I then tried to recreate the demo app following Errors

Sorry for showing the errors by a screenshot but the logs when building are way too long to share, since I think it's a common problem it shouldn't be that troublesome, let me know if you need the errors so I'll do a pastebin.

Thank you guys

CodePudding user response:

It looks like you maybe getting some errors while getting the dependencies and flutter is not being downloaded correctly.

If its still happening review your dependencies and do a:

flutter clean
flutter pub upgrade

If it still happens, review the log of flutter pub get to see what error you maybe getting from the dependencies.

There is another command that could work if your case is that the dependencies are not being updated locally, not on your project, but on your flutter cache. You can use:

flutter pub cache repair

CodePudding user response:

The only solution I found was to delete the Flutter SDK (just delete the folder you downloaded) and to reinstall via git just because I prefer it that way.

I also moved the SDK from C:/Users/my_user/ to C:/src.

  • Related