display image flutter code example
Example 1: network image url
Image.network(
'https://picsum.photos/250?image=9',
)
Example 2: how to display an image in flutter using its filepath
Image.file(File(path))
Image.network(
'https://picsum.photos/250?image=9',
)
Image.file(File(path))