mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
fix: initial size of bottom sheet (#22085)
This commit is contained in:
parent
0c0bec6ae2
commit
4dfa011eef
1 changed files with 1 additions and 1 deletions
|
|
@ -87,7 +87,7 @@ class _GeneralBottomSheetState extends ConsumerState<GeneralBottomSheet> {
|
||||||
|
|
||||||
return BaseBottomSheet(
|
return BaseBottomSheet(
|
||||||
controller: sheetController,
|
controller: sheetController,
|
||||||
initialChildSize: 0.45,
|
initialChildSize: widget.minChildSize ?? 0.15,
|
||||||
minChildSize: widget.minChildSize,
|
minChildSize: widget.minChildSize,
|
||||||
maxChildSize: 0.85,
|
maxChildSize: 0.85,
|
||||||
shouldCloseOnMinExtent: false,
|
shouldCloseOnMinExtent: false,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue