Create a new Flutter project with your favorite editor or integrated development environment (IDE).
You're going to need a picture for the profile image. You can choose any image you want, but you can also download this image of a dog from Unsplash: https://unsplash.com/photos/k1LNP6dnyAE.
Rename the file as dog.jpg and add it to the assets folder (create assets in the root folder of your project).
We will also reuse the beach picture that we used in the previous chapter: you can download this at https://unsplash.com/photos/nXOB-wh4Oyc. Rename it as beach.jpg.
Don't forget to add the assets folder to your pubspec.yaml file:
assets:
- assets/
You are also going to need a new file for this page. Create a profile_screen.dart file in the lib folder.
Don't forget to have the app running while inputting this code to take advantage of hot reload.