Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: image list gallery #2724

Closed
wants to merge 24 commits into from
Closed
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
d748bc6
feat: image list gallery
VaiTon Aug 3, 2022
27e780b
feat: added arrows and styling to tiles
VaiTon Aug 3, 2022
be68b27
Merge branch 'develop' into feat/image_gallery
VaiTon Aug 4, 2022
50f1e1d
refactor: extract SmoothListTileCard widget
VaiTon Aug 5, 2022
7b70d61
docs: add documentation to `product_image_gallery_view.dart`
VaiTon Aug 5, 2022
3e3968c
chore: cleaned code
VaiTon Aug 5, 2022
5d53934
refactor: rename `getAllProductImagesData` to `getProductMainImagesDa…
VaiTon Aug 6, 2022
8339953
Merge branch 'develop' into feat/image_gallery
VaiTon Aug 6, 2022
86af408
feat: display every image in gallery view
VaiTon Aug 6, 2022
ae461e4
Merge branch 'develop' into feat/image_gallery
VaiTon Aug 7, 2022
cb34353
fix: make onTap work again
VaiTon Aug 7, 2022
5a1a91c
Merge branch 'develop' into feat/image_gallery
VaiTon Aug 9, 2022
2318810
Merge branch 'develop' into feat/image_gallery
VaiTon Aug 10, 2022
5236428
Merge branch 'develop' into feat/image_gallery
VaiTon Aug 13, 2022
3693d95
feat: shimmering effect in `smooth_list_view.dart`
VaiTon Aug 13, 2022
dfcd7b0
Update packages/smooth_app/lib/generic_lib/widgets/smooth_image_list.…
VaiTon Aug 16, 2022
862241a
refactor: extract SmoothBackButton
VaiTon Aug 16, 2022
efa58c2
refactor: extract methods and add docs in `product_image_viewer.dart`
VaiTon Aug 16, 2022
dbcd334
Merge branch 'develop' into feat/image_gallery
VaiTon Aug 16, 2022
0b580a3
refactor: use _ListTileItem in `edit_product_page.dart`
VaiTon Aug 16, 2022
c21aafc
refactor: allow better reviews
VaiTon Aug 16, 2022
a57a485
fix: use relative size instead of arbitrary ones in `smooth_list_tile…
VaiTon Aug 16, 2022
7a25112
fix: use black for `product_image_viewer.dart` AppBar
VaiTon Aug 16, 2022
d44439e
fix: use Flutter TODO format
VaiTon Aug 16, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,6 @@ class _ImageUploadCardState extends State<ImageUploadCard> {
builder: (BuildContext context) => ProductImageGalleryView(
productImageData: widget.productImageData,
allProductImagesData: widget.allProductImagesData,
title: widget.productImageData.title,
barcode: widget.product.barcode,
),
),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,6 @@ class _EditProductPageState extends State<EditProductPage> {
ProductImageGalleryView(
productImageData: allProductImagesData.first,
allProductImagesData: allProductImagesData,
title: allProductImagesData.first.title,
barcode: _product.barcode,
),
),
Expand Down