Flutter app behind corporate firewall throws TLS error during packages get

后端 未结 4 1917
Happy的楠姐
Happy的楠姐 2021-01-01 02:38

Recently have installed Flutter and exploring hello-world app. Followed all steps mentioned at https://flutter.io/get-started/ and was able to run

:: flutt

4条回答
  •  迷失自我
    2021-01-01 03:25

    Do this for windows environment

    set https_proxy=USERNAME:PASSWORD@hostname:port
    set http_proxy=USERNAME:PASSWORD@hostname:port
    set NO_PROXY=localhost,127.0.0.1
    

    before calling flutter create

提交回复
热议问题