1
0
mirror of https://github.com/immich-app/immich.git synced 2025-07-14 07:04:24 +02:00

fix(mobile): Dismissible menus (#14192)

* chore(mobile): make all search filters dismissible

* chore(mobile): make ImmichAppBarDialog dismissible

---------

Co-authored-by: Alex <alex.tran1502@gmail.com>
This commit is contained in:
John Stef
2024-11-18 18:06:07 +02:00
committed by GitHub
parent 6b5defc27b
commit 41f138d3c8
2 changed files with 3 additions and 2 deletions

View File

@ -259,6 +259,7 @@ class ImmichAppBarDialog extends HookConsumerWidget {
}
return Dismissible(
behavior: HitTestBehavior.translucent,
direction: DismissDirection.down,
onDismissed: (_) => Navigator.of(context).pop(),
key: const Key('app_bar_dialog'),