From 0a5399cd829719910b04f53c98b34a167ca2fb0c Mon Sep 17 00:00:00 2001 From: Muhammad Azhar <60821627+azharkhan1@users.noreply.github.com> Date: Sun, 25 Jun 2023 13:08:45 +0500 Subject: [PATCH] feat: iOS allow to pick 6 files max at a time - needed a feature where in iOS it can pick 6 images at a time max previously it was limit to 5 --- ios/src/ImageCropPicker.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ios/src/ImageCropPicker.m b/ios/src/ImageCropPicker.m index 9f20973f1..62f31e6c9 100644 --- a/ios/src/ImageCropPicker.m +++ b/ios/src/ImageCropPicker.m @@ -57,7 +57,7 @@ - (instancetype)init @"includeExif": @NO, @"compressVideo": @YES, @"minFiles": @1, - @"maxFiles": @5, + @"maxFiles": @6, @"width": @200, @"waitAnimationEnd": @YES, @"height": @200,