Skip to content

Commit 0346069

Browse files
committed
🍏 Fix bottom bar disappearing on apple os when it's single asset mode.
1 parent 59c8696 commit 0346069

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/src/widget/asset_picker.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1018,7 +1018,7 @@ class AssetPicker extends StatelessWidget {
10181018
child: Stack(
10191019
children: <Widget>[
10201020
Positioned.fill(child: assetsGrid(context)),
1021-
if (!isSingleAssetMode)
1021+
if (!isSingleAssetMode || isAppleOS)
10221022
PositionedDirectional(
10231023
bottom: 0.0,
10241024
child: bottomActionBar(context),

0 commit comments

Comments
 (0)