flutter_photo_manager icon indicating copy to clipboard operation
flutter_photo_manager copied to clipboard

[How to use] Skip iCloud access

Open deepesh-inoid opened this issue 5 months ago • 2 comments

Platforms

iOS

Description

There is any other way to skip downloads from icloud because when my internet connection turn on that time its too lazy fetching the assets from paths because my images is not store locally.

And turn off the internet connection its work too fast.

I'm used await asset.isLocallyAvailable(); /// to skip the icloud assets but its taking more time consuming, there is any another way.

My code

bool isLocallyAva = await asset.isLocallyAvailable();

          if(isLocallyAva){
            if(!existingAssetList.contains(asset.id)) {
              assetsEntity.add(asset);
            }
          }

Try do it

No response

deepesh-inoid avatar Aug 20 '25 11:08 deepesh-inoid