Logo

K-Learn

Flutter Asset Image Widget

< Previous Next >

The NetworkImage widget in Flutter is used to display images from a network URL. It's a very useful widget when you need to display an image that's hosted on a server. You can customise the appearance and behaviour of the NetworkImage widget by using various properties.

Here's an example of how to use the NetworkImage widget:

Image.network(
  'https://flutter.github.io/assets-for-api-docs/assets/widgets/owl.jpg'
)

Some common properties of the NetworkImage widget:

url: The URL of the image to be displayed.

headers: A map of HTTP headers to include with the network request.

scale: The scale factor of the image.

loadingBuilder: A function that builds the widget to display while the image is loading.

errorBuilder: A function that builds the widget to display if the image fails to load.

frameBuilder: A function that builds the widget to display when the image is fully loaded.


< Previous Next >