Skip to content

Commit e7dea8f

Browse files
leontobiasAlexV525
andauthored
🐛 Fix conditions with the confirm button on iOS (#376)
Co-authored-by: Alex Li <[email protected]>
1 parent 1bb1100 commit e7dea8f

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ that can be found in the LICENSE file. -->
44

55
# Changelog
66

7+
## 8.1.4
8+
9+
### Fixes
10+
11+
- Fix conditions with the confirm button on iOS. (#376)
12+
713
## 8.1.3
814

915
### Improvements

example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: wechat_assets_picker_demo
22
description: The demo project for the wechat_assets_picker package.
3-
version: 8.1.3+28
3+
version: 8.1.4+29
44
publish_to: none
55

66
environment:

lib/src/delegates/asset_picker_builder_delegate.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -952,7 +952,7 @@ class DefaultAssetPickerBuilderDelegate
952952
child: Stack(
953953
children: <Widget>[
954954
Positioned.fill(child: assetsGridBuilder(context)),
955-
if (!isSingleAssetMode || isAppleOS)
955+
if (!isSingleAssetMode || isPreviewEnabled)
956956
Positioned.fill(
957957
top: null,
958958
child: bottomActionBar(context),

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: |
33
An audio/video/image picker in pure Dart which is the same with WeChat,
44
support multi picking, custom item and delegates override.
55
repository: https://github.com/fluttercandies/flutter_wechat_assets_picker
6-
version: 8.1.3
6+
version: 8.1.4
77

88
environment:
99
sdk: '>=2.17.0 <3.0.0'

0 commit comments

Comments
 (0)