Reputation: 2005
How does one debug their Flutter code while the app is running an in-app simulator?
Upvotes: 8
Views: 21503
Reputation: 42413
If you launch your Flutter project from VS Code with F5
/Debug -> Start Debugging
then normal debugging functionality (such as breakpoints, stepping, etc.) should just work (and hot-reload will automatically fire on-save).
Upvotes: 16