-
Notifications
You must be signed in to change notification settings - Fork 110
Open
Labels
bugSomething isn't workingSomething isn't working
Description
- I have read the Get Started - Installation section
- I have read and done the Get Started - Setup Android section
- I have read and done the Get Started - Setup iOS section
- I have already searched for the same problem
Environment
| Technology | Version |
|---|---|
| Flutter version | 3.27.2 |
| Plugin version | 1.2.11 |
| Android version | |
| iOS version | 18+ |
| Xcode version | 16 |
Device information:
Description
Expected behavior:
The photo gallery should shows up.
Current behavior:
The photo gallery didn't show up
Steps to reproduce
Use Xcode 16 to run the sample code will reproduce the issue.
Use Xcode 15 to run the sample code will work without issue.
-
This
switch (option) {
case ImageSelectOption.gallery:
res = await ImagesPicker.pick(
count: state.maxImage,
// count: 1,
pickType: PickType.image,
language: Language.Japanese,
cropOpt: CropOption(
cropType: CropType.circle,
),
quality: 0.8,
maxSize: 800,
);
break;
case ImageSelectOption.camera:
res = await ImagesPicker.openCamera(
pickType: PickType.image,
quality: 0.8,
maxSize: 800,
);
break;
} -
Than that
Once I click open photo gallery button -
Then
Only the openCamera function can work, not pick.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working