File tree Expand file tree Collapse file tree 4 files changed +11
-3
lines changed Expand file tree Collapse file tree 4 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,12 @@ that can be found in the LICENSE file. -->
7
7
> [ !IMPORTANT]
8
8
> See the [ Migration Guide] ( guides/migration_guide.md ) for the details of breaking changes between versions.
9
9
10
+ ## 9.0.5
11
+
12
+ ### Fixes
13
+
14
+ - Fix reverted index when previewing assets on Android.
15
+
10
16
## 9.0.4
11
17
12
18
### Fixes
Original file line number Diff line number Diff line change 1
1
name : wechat_assets_picker_demo
2
2
description : The demo project for the wechat_assets_picker package.
3
- version : 9.0.4+53
3
+ version : 9.0.5+54
4
4
publish_to : none
5
5
6
6
environment :
Original file line number Diff line number Diff line change @@ -914,7 +914,9 @@ class DefaultAssetPickerBuilderDelegate
914
914
selected = p.selectedAssets;
915
915
if (index == null ) {
916
916
current = p.selectedAssets;
917
- current = current.reversed.toList (growable: false );
917
+ if (revert) {
918
+ current = current.reversed.toList (growable: false );
919
+ }
918
920
effectiveIndex = selected.indexOf (currentAsset);
919
921
} else {
920
922
current = p.currentAssets;
Original file line number Diff line number Diff line change 1
1
name : wechat_assets_picker
2
- version : 9.0.4
2
+ version : 9.0.5
3
3
description : |
4
4
An image picker (also with videos and audio)
5
5
for Flutter projects based on WeChat's UI,
You can’t perform that action at this time.
0 commit comments