From 6b5d6e40915374e9e18f7f7997441988c9dca3bc Mon Sep 17 00:00:00 2001 From: martyfuhry Date: Sat, 28 Jan 2023 16:05:28 -0500 Subject: [PATCH] fix(mobile): top padding missing from drag handle in add to album bottom sheet (#1462) --- mobile/lib/modules/album/ui/add_to_album_bottom_sheet.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/mobile/lib/modules/album/ui/add_to_album_bottom_sheet.dart b/mobile/lib/modules/album/ui/add_to_album_bottom_sheet.dart index 4ba31de269..8b919c479d 100644 --- a/mobile/lib/modules/album/ui/add_to_album_bottom_sheet.dart +++ b/mobile/lib/modules/album/ui/add_to_album_bottom_sheet.dart @@ -80,6 +80,7 @@ class AddToAlbumBottomSheet extends HookConsumerWidget { child: Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ + const SizedBox(height: 12), const Align( alignment: Alignment.center, child: CustomDraggingHandle(),