Replies: 2 comments
-
What information can I provide that you might find useful? EG: logs of what? |
Beta Was this translation helpful? Give feedback.
0 replies
-
In use, because it is considered that re-inserting pictures will cause paging confusion, the FilterOptionGroup in the example will include the update time to ensure that without deleting the picture, the new picture will not affect the list paging of the old path. final filterOptionGroup = FilterOptionGroup(
imageOption: const FilterOption(
sizeConstraint: SizeConstraint(ignoreSize: true),
),
);
final List<AssetPathEntity> paths = await PhotoManager.getAssetPathList(
onlyAll: true,
filterOption: _filterOptionGroup,
); |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Version
3.0.1
Platforms
Android
Device Model
Moto Razr + 2023
flutter info
How to reproduce?
I am starting with the example app. I do the following:
Run the example app:
a) run _requestAssets()
b) View the list of pictures
Switch to camera
a) take a picture
Switch back to the example app
a) run _requestAssets()
b) The list of pictures does not include the new picture
c) EXPECTED: new picture shows. (it does not)
restart the example app
a) New picture now shows.
I've tried adding a call at the top of _uploadAssets() to
PhotoManager.clearFileCache();
and it had no effect.Logs
No response
Example code (optional)
No response
Contact
[email protected]
Beta Was this translation helpful? Give feedback.
All reactions