Flutter Development and Production Environments — Flavors

Ananda
4 min readJun 15, 2021

Flutter supports the separate environments which are called the same as in Android — Flavors. Each environment can have different setups and can be deployed as a separate app name on the same device. You can run the Flutter app using flavors by the following CLI command:

flutter run --flavor dev

--

--