diff --git a/CHANGELOG.md b/CHANGELOG.md index f34a563..76e2aca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 0.0.15 +- PR #21 (MrNancy) addImage method added in `MultiImagePickerController` + ## 0.0.14 - Fixed Issue #16 'Scrollable.of() ... not contains a Scrollable widget' - Fixed Issue #17 'Add property so images can be saved with data' diff --git a/README.md b/README.md index e033e61..8367720 100644 --- a/README.md +++ b/README.md @@ -98,7 +98,8 @@ controller.pickImages() controller.hasNoImages // return bool controller.maxImages // return maxImages controller.allowedImageTypes // return allowedImageTypes -controller.removeImage(imageFile) // remove image from the images +controller.addImage(imageFile) // add ImageFile to images +controller.removeImage(imageFile) // remove ImageFile from the images controller.clearImages() // remove all images (clear selection) controller.reOrderImage(oldIndex, newIndex) // reorder the image ``` diff --git a/example/pubspec.lock b/example/pubspec.lock index ff6e13d..9c455a9 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -166,7 +166,7 @@ packages: path: ".." relative: true source: path - version: "0.0.14" + version: "0.0.15" path: dependency: transitive description: diff --git a/pubspec.yaml b/pubspec.yaml index b93a2f1..9352a43 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: multi_image_picker_view description: A complete widget which can easily pick multiple images from device and display them in UI. Also picked image can be re-ordered and removed easily. -version: 0.0.14 +version: 0.0.15 homepage: https://github.com/shubham-gupta-16/multi_image_picker_view repository: https://github.com/shubham-gupta-16/multi_image_picker_view issue_tracker: https://github.com/shubham-gupta-16/multi_image_picker_view/issues