问题
Change the default IP(127.0.0.1) of flutter web App.
I have created a flutter web application, when I run the web app the ip which assigned is 127.0.0.1 but i am unable to access the same app with my local IP over LAN. So please help on how can i change this.
回答1:
Start app with command:
webdev serve --hostname 0.0.0.0
Or replace 0.0.0.0 with your actual ip address.
来源:https://stackoverflow.com/questions/56967885/how-to-change-the-default-web-server-ip127-0-0-1-of-flutter-web-app