littleironical
littleironical

Reputation: 1914

Flutter can't detect connected device when flutter web is enabled

I am trying to make a Web project in flutter, but flutter web is not showing any connected devices.

enter image description here

Upvotes: 0

Views: 939

Answers (1)

Christopher Moore
Christopher Moore

Reputation: 17123

flutter config --enable-web is not the only thing the docs say to do before you can use flutter web. In my experience it's also necessary to switch to a flutter version that supports it, which is everything except the stable channel, to even see chrome show up as a device. Do the following to change channels.

flutter channel beta
flutter upgrade

Upvotes: 1

Related Questions