When selecting several images, first the message (please wait) appears, after some time "Request Timeout" (Translated from German "Zeitüberschreitung der Anforderung") appears. Then no image is selected.
Expected behavior:
I expect that the images will also be selected.
Current behavior:
No Image is selected and an error shows up.
Steps to reproduce
Pick more then 75-80 Images, which are located in the iCloud.
Environment
Device information: iPhone 12, iPhone 11, iPhone 7
Description
When selecting several images, first the message (please wait) appears, after some time "Request Timeout" (Translated from German "Zeitüberschreitung der Anforderung") appears. Then no image is selected.
Expected behavior: I expect that the images will also be selected.
Current behavior: No Image is selected and an error shows up.
Steps to reproduce
Pick more then 75-80 Images, which are located in the iCloud.
Code: floatingActionButton: FloatingActionButton( onPressed: () async { List? res = await ImagesPicker.pick(
count: 816,
gif: false,
pickType: PickType.image,
language: Language.System,
cropOpt: CropOption(
aspectRatio: CropAspectRatio.wh16x9,
),
);
if (res != null) {
setState(() {
loading = true;
});
if (imagePaths != null) {
setState(() {
imagePaths =
Set.of(imagePaths! + res.map((e) => e.path).toList())
.toList();
});
} else {
setState(() {
loading = true;
imagePaths = res.map((e) => e.path).toList();
});
}
}
},
tooltip: 'Bilder auswählen',
child: Icon(Icons.add_a_photo),
),
Can you help me out?