Answers for "how to open flutter in vs code"

16

flutter web run using vscode

flutter upgrade
Posted by: Guest on May-25-2020
0

run dart in vscode

//add 'program' and the name of your dart file to launch.json, then hit f5

"configurations": [
         {
            "name": "Flutter",
            "request": "launch",
            "type": "dart",
            "program": "lib/your_class/file_name_with_main_function.dart"
        }
    ]
Posted by: Guest on January-04-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language