Home > OS >  How can I achieve hot restart for flutter app from keyboard on vscode
How can I achieve hot restart for flutter app from keyboard on vscode

Time:09-27

I want a keyboard shortcut that will allow me to hot restart the app without restarting it with the debug bar or debug tab.

on vscode

CodePudding user response:

Two ways to run Hot Restart:

  1. Press Ctrl F5
  2. From the Command Palette, type: "flutter: hot restart".

Have a nice day...

CodePudding user response:

Try the hot restart command: Shift ⇧ Cmd ⌘ F5

  • Related