AngeloAvv / flutter_flavorizr

A flutter utility to easily create flavors in your flutter application
https://pub.dev/packages/flutter_flavorizr
MIT License
456 stars 81 forks source link

flavor prod replaced by flavor stage #261

Closed heshesh2010 closed 4 months ago

heshesh2010 commented 4 months ago

Hi ,

I have setup two flavors prod and stag , when I hit run button in VS code first time when app is closed I see F.appFlavor returns " staging" but when I hit hot restart button I see it returned as "prod" as expected .

I'm sure that main_production.dart is called , and vs code lunch setting is correct :

  {
     "name":"production Debug",
     "request":"launch",
     "type":"dart",
     "flutterMode":"debug",
     "args":[
        "--flavor",
        "production"
     ],
     "program":"lib/main_production.dart"
  },