Home > Enterprise >  Flutter intl missing flutter_gen files
Flutter intl missing flutter_gen files

Time:02-18

Anyone had a problem with flutter intl package?

I keep getting the same import error, but the strings are actually working.

The flutter_gen are generated

enter image description here

enter image description here

CodePudding user response:

It's a common Flutter problem... but the solution is easy. You just have to restart the Dart Analysis Server.

In IntelliJ is the red button in the "Dart Analysis" tab.

enter image description here

  • Related