Reputation: 187
I'm stuck at Syncing files to device Chrome when running the project, the same result from vscode terminal and command prompt, I only get a white screen on a google window and it doesn't seem to be in progress anymore, the steps that I made to create the project are :
flutter channel master
flutter upgrade
flutter config --enable-web
flutter create webapp
cd webapp
flutter run
I tried to check the console with F12 on the browser but it is empty.
I can run the project only in the release mode with flutter run --release
, but it so exhausting to test on this mode seen that the hot reload takes so much time.
Upvotes: 0
Views: 191
Reputation: 7100
It is recommended to use beta
channel for web support in flutter.
flutter channel beta
Upvotes: 1