Tembero
Tembero

Reputation: 407

Flutter Web: How to run without a device/browser?

I want to run the flutter web development server without specifying a device/browser.

Upvotes: 3

Views: 3160

Answers (2)

esentis
esentis

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

You must to define chrome.

flutter run -d chrome

Check this documentation: https://flutter.dev/docs/get-started/web

Upvotes: -3

Related Questions