fix: pop-up menu position

pull/24343/head
Alex 2025-12-02 10:14:34 -06:00
parent 116012f6f8
commit ee70c24fe2
No known key found for this signature in database
GPG Key ID: 53CD082B3A5E1082
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ class AddActionButton extends ConsumerWidget {
final size = renderObject.size;
final position = renderObject.localToGlobal(Offset.zero);
return RelativeRect.fromLTRB(position.dx, position.dy - size.height - 200, position.dx + size.width, position.dy);
return RelativeRect.fromLTRB(position.dx, position.dy - size.height - 225, position.dx + size.width, position.dy);
}
void _openAlbumSelector(BuildContext context, WidgetRef ref) {