Search code examples
flutterdartflutter-web

Create a flutter project without a web dependence


I want to create a new project in flutter using VS, but I want this project without the web dependence just a mobile app dependence but each time I create a project it gives me the dependence of the web, not a mobile app For Example, this what I get:

enter image description here

This what I want

enter image description here


Solution

  • In the same way you enabled flutter web support, disable it.

    flutter config --no-enable-web
    

    This removes web support so that future created projects will not generate a web folder. You may need to restart any open editors for the changes to take place.