mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
davhojt
4328e8f3dc
|
2 years ago | |
---|---|---|
.. | ||
audit | 2 years ago | |
resources | 2 years ago | |
README.md | 2 years ago |
README.md
Favorite Images
Introduction
Nowadays, it is very difficult to imagine a popular app that does not work with storing, accessing images.
In this app you will get a chance to practise it.
You should create your gallery, where you can load images from phone library or take a picture and immediately upload it.
Allowed package: image_picker.
First Part
- Create an appbar with IconButton.
- When you click on a button you should see 2 options: open camera or a gallery.
- See the usage of image_picker package.
- Don't forget to add special keys to Info.plist file under ios folder to access the camera and gallery, see example.
- Show "No images selected" message if no images are loaded.
Second Part
- When user is done picking image or taking picture it should be added to GridList
- When an image is tapped, user should see the whole image
- Add an ability to zoom in, zoom out the image, see example.