change your firebase.json config slightly. You currently have the public directory set to build but if you look in there, the >index.htmlis the file you’re seeing with the "Firebase Hosting Complete"
message. When you build your app, it is actually being put into build/your-app-name so you’ll need to change the line in firebase.json
from:
"public": "build",
to:
"public": "build/your-app-name",
Also check above github and these similar cases for more alternate solutions:
3
Answers
The problem was that i have "estilos" y "responsive" in the same place as main.dart.
Open Terminal then write :
then
then
for more details you can read this article
It is discussed in this github thread
Also check above github and these similar cases for more alternate solutions: