Skip to content

Instantly share code, notes, and snippets.

@devrnt
Last active May 11, 2019 12:13
Show Gist options
  • Save devrnt/a8dd51780cab1cc224d9d1fb54f5e2de to your computer and use it in GitHub Desktop.
Save devrnt/a8dd51780cab1cc224d9d1fb54f5e2de to your computer and use it in GitHub Desktop.
Flutter VSCode configurations
{
"version": "0.2.0",
"configurations": [
{
"name": "Flutter Free",
"request": "launch",
"type": "dart",
"args": [
"--flavor",
"free"
]
},
{
"name": "Flutter Pro",
"request": "launch",
"type": "dart",
"program": "lib/main_pro.dart",
"args": [
"--flavor",
"pro"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment