Skip to content

iOS 18 + Xcode 16 Issue #111

@lmw4051

Description

@lmw4051

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.

  1. 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;
    }

  2. Than that
    Once I click open photo gallery button

  3. Then
    Only the openCamera function can work, not pick.

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions