Reputation: 407
I want to run the flutter web development server without specifying a device/browser.
Upvotes: 3
Views: 3160
Reputation: 4726
I guess you mean without specifying browser? If so you try running it with this command :
flutter run -d web-server
Upvotes: 15
Reputation: 739
You must to define chrome.
flutter run -d chrome
Check this documentation: https://flutter.dev/docs/get-started/web
Upvotes: -3