make sure tab bar always visible when bottom sheet active

This commit is contained in:
Fabian Freund
2025-10-15 06:09:38 +02:00
parent 3460a1ebd1
commit 31c52ca47c
@@ -212,7 +212,9 @@ class BrowserScreen extends HookConsumerWidget {
);
return Visibility(
visible: !tabInFullScreen && appBarVisible,
visible:
sheetController.value != null ||
(!tabInFullScreen && appBarVisible),
child: BrowserBottomAppBar(displayedSheet: displayedSheet),
);
},