Jayakumar Thangavel
Jayakumar Thangavel

Reputation: 2005

How do you debug Flutter in VsCode?

How does one debug their Flutter code while the app is running an in-app simulator?

Upvotes: 8

Views: 21503

Answers (1)

Danny Tuppeny
Danny Tuppeny

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

Related Questions