mirror of
https://github.com/samsonjs/immich.git
synced 2026-03-25 09:15:56 +00:00
fix(mobile): my location button on maps not visible due to bottom padding (#10384)
fix(maps): my location button not visible due to bottom padding
This commit is contained in:
parent
eb987c14c1
commit
7ce87abc95
1 changed files with 1 additions and 1 deletions
|
|
@ -298,7 +298,7 @@ class MapPage extends HookConsumerWidget {
|
|||
),
|
||||
Positioned(
|
||||
right: 0,
|
||||
bottom: 30,
|
||||
bottom: MediaQuery.of(context).padding.bottom + 16,
|
||||
child: ElevatedButton(
|
||||
onPressed: onZoomToLocation,
|
||||
style: ElevatedButton.styleFrom(
|
||||
|
|
|
|||
Loading…
Reference in a new issue