Flutter cannot load image from url Flutter cannot load image from url dart dart

Flutter cannot load image from url


For some reason Image.network seems to interpret the URL as file path.

Try instead setting the protocol explicitely:

body: new Image.network('http://www.google.de/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png'),