Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/flutter/9.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Flutter 将颤振腹板(PWA)部署到github_Flutter_Github_Progress Bar_Web Deployment_Flutter Web - Fatal编程技术网

Flutter 将颤振腹板(PWA)部署到github

Flutter 将颤振腹板(PWA)部署到github,flutter,github,progress-bar,web-deployment,flutter-web,Flutter,Github,Progress Bar,Web Deployment,Flutter Web,您好,我正在尝试将我的pwa颤振项目部署到我的github帐户,这是我一步一步完成的 1. create flutter web project, I have already configure my flutter project with web by doing flutter channel master, flutter upgrade, flutter config --enable-web, flutter create . 2. flutter build web --rele

您好,我正在尝试将我的pwa颤振项目部署到我的github帐户,这是我一步一步完成的

1. create flutter web project, I have already configure my flutter project with web by doing flutter channel master, flutter upgrade, flutter config --enable-web, flutter create .
2. flutter build web --release
3. I create my repository in github: myname.github.io
3. I go to my build\web folder of my project and do: git init
4. git remote add origin my_address_of_github_project.git
5. git add .
6. git commit -m "first"
7. git push origin master
8. I try to access my project by opening https://myname.github.io or https://myname.github.io/index.html
就这些。。。但在执行第8步时,我一直得到404找不到。。。还有什么需要补充的吗