multi_image_picker_view icon indicating copy to clipboard operation
multi_image_picker_view copied to clipboard

An image_picker based widget which helps to pick multiple images in a GridView which can also be reorderable.

Results 8 multi_image_picker_view issues
Sort by recently updated
recently updated
newest added

bool _isSelectionToggled = false; void toggleImageSelection(ImageFile imageFile) { if (!_isSelectionToggled) { setState(() { if (selectedImages.contains(imageFile)) { selectedImages.remove(imageFile); } else { selectedImages.add(imageFile); } _isSelectionToggled = true; }); } } caling from...

question

Text color in ErrorPreview is set to onSecondaryContainer but its backgroud is surfaceVariant: instead, it should be secondaryContainer otherwise it might end up being white on white or other invisible...

When building the preview of a non-image file, it's useful to show the file type, such as PDF or other, so that the picker can be used to select non-image...

Add a textfield over the image to let users add descriptions of uploaded images. The field is behing a flag that defaults to false for backwards compatibility. ![image](https://github.com/shubham-gupta-16/multi_image_picker_view/assets/4000539/39870dc0-d0bd-4523-89ad-7620a1ef5beb)

Use case: - an entity has a multiple pictures field - I want to attach pictures to that entity and save it to the backend - when I edit the...

When I run the example with Flutter 3.22 in **release** mode I can take/choose multiple images but only the last is shown. When I delete the last image the previous...

bug
help wanted

It would be great to have the possibility to pass a custom dict (kwarg) to picker-method. Then we could implement an imageSource-selection-logic in onPressed-method of an addMoreButton and pass the...

enhancement

Hi, inside the io_preview.dart in line 31: ` Uri.tryParse(imageFile.path!)?.scheme.startsWith('http') == true ? Image.network( imageFile.path!, fit: fit, errorBuilder: errorBuilder ?? _defaultErrorBuilder, ) : Image.file( File(imageFile.path!), fit: fit, errorBuilder: errorBuilder ?? _defaultErrorBuilder,...