From f0a27dc09a3bb56181f8827d15a6f864b8fbbc63 Mon Sep 17 00:00:00 2001 From: Fabian Freund Date: Thu, 29 Jan 2026 20:23:13 +0100 Subject: [PATCH] snackbar position without bottomSafeArea --- .../features/browser/presentation/screens/browser.dart | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/lib/features/geckoview/features/browser/presentation/screens/browser.dart b/app/lib/features/geckoview/features/browser/presentation/screens/browser.dart index 1c1db16a..5093cf79 100644 --- a/app/lib/features/geckoview/features/browser/presentation/screens/browser.dart +++ b/app/lib/features/geckoview/features/browser/presentation/screens/browser.dart @@ -412,7 +412,9 @@ class BrowserScreen extends HookConsumerWidget { insetPadding: EdgeInsets.only( left: 16, right: 16, - bottom: bottomToolbarVisible ? bottomAppBarTotalHeight + 8 : 16, + bottom: bottomToolbarVisible + ? bottomAppBarContentSize.height + 8 + : 16, ), ), );