display image in flutter code example
Example 1: network image url
Image.network(
'https://picsum.photos/250?image=9',
)
Example 2: flutter image asset
// pubspec.yaml
flutter:
assets:
- graphics/
// Inside your widget
Image(image: AssetImage('graphics/background.png'))