Skip to content

Instantly share code, notes, and snippets.

@eingress
Last active December 16, 2022 11:17
Show Gist options
  • Save eingress/71d6b1deaa4283437626541b4ae69695 to your computer and use it in GitHub Desktop.
Save eingress/71d6b1deaa4283437626541b4ae69695 to your computer and use it in GitHub Desktop.
VSCode Flutter launch.json
{
"version": "0.2.0",
"configurations": [
{
"name": "Android Phone",
"request": "launch",
"type": "dart",
"deviceId": "Device Name"
},
{
"name": "Android Tablet",
"request": "launch",
"type": "dart",
"deviceId": "Device Name"
},
{
"name": "Apple iPad",
"request": "launch",
"type": "dart",
"deviceId": "Device Name"
},
{
"name": "Apple iPhone",
"request": "launch",
"type": "dart",
"deviceId": "Device Name"
},
{
"name": "Web",
"request": "launch",
"type": "dart",
"deviceId": "chrome"
}
],
"compounds": [
{
"name": "All Apple",
"configurations": ["Apple iPad", "Apple iPhone"]
},
{
"name": "All Android",
"configurations": ["Android Phone", "Android Tablet"]
},
{
"name": "All Devices",
"configurations": [
"Apple iPad",
"Apple iPhone",
"Android Phone",
"Android Tablet"
]
},
{
"name": "All Platforms",
"configurations": [
"Apple iPad",
"Apple iPhone",
"Android Phone",
"Android Tablet",
"Web"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment