Home > Software engineering >  Flutter Web Page blank white screen how to fixed?
Flutter Web Page blank white screen how to fixed?

Time:08-21

No project is working in Flutter, I installed the sdk and installed android studio, I am using vs code, my stable version, but I could not solve some kind of error. please help https://github.com/flutter/flutter/issues/109789 Code value

CodePudding user response:

Try running your flutter web app with html renderer and see if it works.

Paste this command to your terminal:

flutter run -d chrome --web-renderer html

terminal screenshot

  • Related