mirror of
https://github.com/immich-app/immich.git
synced 2024-12-28 06:31:58 +00:00
fix(mobile): search picker overflow (#10870)
This commit is contained in:
parent
7bde19d842
commit
b25642b889
2 changed files with 8 additions and 8 deletions
|
@ -199,9 +199,12 @@ class SearchInputPage extends HookConsumerWidget {
|
||||||
padding: EdgeInsets.only(
|
padding: EdgeInsets.only(
|
||||||
bottom: MediaQuery.of(context).viewInsets.bottom,
|
bottom: MediaQuery.of(context).viewInsets.bottom,
|
||||||
),
|
),
|
||||||
child: LocationPicker(
|
child: Padding(
|
||||||
onSelected: handleOnSelect,
|
padding: const EdgeInsets.symmetric(horizontal: 16.0),
|
||||||
filter: filter.value.location,
|
child: LocationPicker(
|
||||||
|
onSelected: handleOnSelect,
|
||||||
|
filter: filter.value.location,
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
@ -242,7 +245,7 @@ class SearchInputPage extends HookConsumerWidget {
|
||||||
onSearch: search,
|
onSearch: search,
|
||||||
onClear: handleClear,
|
onClear: handleClear,
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: const EdgeInsets.symmetric(vertical: 16.0),
|
padding: const EdgeInsets.all(16.0),
|
||||||
child: CameraPicker(
|
child: CameraPicker(
|
||||||
onSelect: handleOnSelect,
|
onSelect: handleOnSelect,
|
||||||
filter: filter.value.camera,
|
filter: filter.value.camera,
|
||||||
|
|
|
@ -38,10 +38,7 @@ class FilterBottomSheetScaffold extends StatelessWidget {
|
||||||
style: context.textTheme.headlineSmall,
|
style: context.textTheme.headlineSmall,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
Padding(
|
buildChildWidget(),
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 16),
|
|
||||||
child: buildChildWidget(),
|
|
||||||
),
|
|
||||||
Padding(
|
Padding(
|
||||||
padding: const EdgeInsets.all(8.0),
|
padding: const EdgeInsets.all(8.0),
|
||||||
child: Row(
|
child: Row(
|
||||||
|
|
Loading…
Reference in a new issue