A new Flutter project which explains how to use images in Flutter.
Create a folder named assets and store all the images in that folder.
Go to the pubspec.yaml file and make the following changes:
assets:- assets/puppy.jpeg
- Then after this your image is usable in the app.
child:Image.asset('assets/puppy.jpeg')