Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Flutter web create issue in existing flutter app

Tags:

I already have the flutter app, now I am adding support to flutter Web following this doc. I am getting the error on flutter create .

Ambiguous organization in existing files: {com.app.android.fluttermodule,com.app.android.flutterModule}. The --org command line argument must be
specified to recreate project.

I have mentioned pubsec.yml

  module:
    androidPackage: com.app.android.fluttermodule
    iosBundleIdentifier: com.app.android.flutterModule
like image 698
Rahul Devanavar Avatar asked Sep 18 '19 12:09

Rahul Devanavar


People also ask

Is Flutter web good for production?

Well, it will. Many developers globally consider Flutter for enterprise web development because of the wide range of features it has to offer. Ever since its introduction, it has been fruitful for making app development easier than native apps.

Can a Flutter app run on web?

The web itself is a flexible platform, but Flutter is ideal for building web applications like PWAs or SPAs and bringing your existing mobile app to the web.


1 Answers

You can use this command

flutter create --org package_name .
like image 171
kokoko Avatar answered Sep 21 '22 13:09

kokoko