I have flutter web app which can be easily deploy to chrome browser on my PC. Upon successful deployment:
- Console
- Web browser(Chrome)
I'm looking for the way to access localhost running in chrome from my iPhone browser. My iPhone and PC both connected to the same network. I grabbed IP address of the network and tried accessing from my iPhone safari browser with the link as:
But it's NOT working and I'm getting 'The site can't be reached' message. Is there any extra step I can perform to make flutter localhost accessible from my mobile browser or simply its impossible with flutter ?
flutter build web
then run it using something like pythons simpleHttpServer , then it will be accesable on your phone if you are on the same network – Concealment