Home > database >  How do you compile a flutter application?
How do you compile a flutter application?

Time:12-10

I'm seeing that I can introduce a compilation error in my dart code but flutter build ios will still successfully run. If I flutter run -d [my-simulator] the compile error will immediately be presented in a red screen on the simulator but I can't currently easily do this in a CI type check.

Is there are cli command I can run to ensure that all of the dart code is free of compile errors?

CodePudding user response:

You can run dart analyze or flutter analyze commands.

More info

  • Related