## Favorite Images Nowadays, it is very difficult to imagine a popular app that does not work with storing, accessing images. This is a practical exercise designed to help you practice it in a mobile app. This app must allows you to create a personal gallery where you can upload images from your phone library or take new pictures and immediately add them to your collection. To build this app, you have as allowed packages the [image_picker](https://pub.dev/packages/image_picker), which enables you to access the device's camera and gallery. ### Instructions ### Image Picker In the first part of the exercise, you will create an `appbar` with an **IconButton**. When the user clicks on the button, they should see two options: - Open the camera. - Access the gallery. > Note: Your camera must work both in `iOS` and `Android`. You should use the `image_picker` package to implement this functionality. Additionally, you should show a `"No images selected"` message if no images have been loaded. > Note: Don't forget to add special keys to Info.plist file under ios folder to access the camera and gallery, see [example](https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/AboutInformationPropertyListFiles.html).