keyboard bottom sheet working

This commit is contained in:
Fabian Freund
2026-01-08 20:57:33 +01:00
parent ba057015f4
commit d4222a0dc4
2 changed files with 104 additions and 100 deletions
@@ -318,14 +318,19 @@ class BrowserScreen extends HookConsumerWidget {
// Calculate relative safe area for sheet max size // Calculate relative safe area for sheet max size
final relativeSafeArea = MediaQuery.of(context).relativeSafeArea(); final relativeSafeArea = MediaQuery.of(context).relativeSafeArea();
final bottomSafeArea = MediaQuery.of(context).padding.bottom;
// Calculate bottom toolbar size for FAB positioning // Calculate bottom toolbar size for FAB and sheet positioning
final bottomAppBarSize = BrowserBottomAppBar( // Pass actual displayedSheet to get correct height when ViewTabsSheet hides main toolbar
final bottomAppBarContentSize = BrowserBottomAppBar(
showMainToolbar: tabBarPosition == TabBarPosition.bottom, showMainToolbar: tabBarPosition == TabBarPosition.bottom,
showContextualToolbar: showContextualToolbar, showContextualToolbar: showContextualToolbar,
showQuickTabSwitcherBar: showQuickTabSwitcherBar, showQuickTabSwitcherBar: showQuickTabSwitcherBar,
displayedSheet: null, displayedSheet: displayedSheet,
).preferredSize; ).preferredSize;
// Total height includes safe area padding
final bottomAppBarTotalHeight =
bottomAppBarContentSize.height + bottomSafeArea;
return PopScope( return PopScope(
//We need this for BackButtonListener to work downstream //We need this for BackButtonListener to work downstream
@@ -334,11 +339,7 @@ class BrowserScreen extends HookConsumerWidget {
child: Theme( child: Theme(
data: themeData, data: themeData,
child: Scaffold( child: Scaffold(
// Minimal scaffold - only for Material overlay support (SnackBars, BottomSheets) // Minimal scaffold - only for Material overlay support (SnackBars)
bottomSheetScrimBuilder: (_, _) {
// Custom barrier handling - disable scaffold's scrim
return null;
},
body: Stack( body: Stack(
children: [ children: [
// Layer 0: Browser content (fills entire Stack - constant dimensions) // Layer 0: Browser content (fills entire Stack - constant dimensions)
@@ -358,15 +359,15 @@ class BrowserScreen extends HookConsumerWidget {
left: 0, left: 0,
right: 0, right: 0,
top: 0, top: 0,
bottom: bottomAppBarSize.height, bottom: bottomAppBarTotalHeight,
child: _SheetContainer( child: _SheetContainer(
displayedSheet: displayedSheet, displayedSheet: displayedSheet,
relativeSafeArea: relativeSafeArea, relativeSafeArea: relativeSafeArea,
bottomAppBarSize: bottomAppBarSize, bottomAppBarHeight: bottomAppBarTotalHeight,
), ),
), ),
// Layer 2: Bottom Toolbar (overlay, slides in/out) - above sheet // Layer 2: Bottom Toolbar (overlay, slides in/out)
Positioned( Positioned(
left: 0, left: 0,
right: 0, right: 0,
@@ -411,8 +412,8 @@ class BrowserScreen extends HookConsumerWidget {
curve: Curves.easeInOutQuart, curve: Curves.easeInOutQuart,
right: 16, right: 16,
bottom: bottomToolbarVisible bottom: bottomToolbarVisible
? bottomAppBarSize.height + 16 ? bottomAppBarTotalHeight + 16
: 16 + MediaQuery.of(context).padding.bottom, : 16 + bottomSafeArea,
child: const BrowserFab(), child: const BrowserFab(),
), ),
], ],
@@ -427,16 +428,19 @@ class BrowserScreen extends HookConsumerWidget {
class _SheetContainer extends HookConsumerWidget { class _SheetContainer extends HookConsumerWidget {
final Sheet displayedSheet; final Sheet displayedSheet;
final double relativeSafeArea; final double relativeSafeArea;
final Size bottomAppBarSize; final double bottomAppBarHeight;
const _SheetContainer({ const _SheetContainer({
required this.displayedSheet, required this.displayedSheet,
required this.relativeSafeArea, required this.relativeSafeArea,
required this.bottomAppBarSize, required this.bottomAppBarHeight,
}); });
@override @override
Widget build(BuildContext context, WidgetRef ref) { Widget build(BuildContext context, WidgetRef ref) {
// Memoize maxChildSize to prevent keyboard from affecting sheet size
final stableMaxChildSize = useMemoized(() => relativeSafeArea, []);
bool dismissOnThreshold(DraggableScrollableNotification notification) { bool dismissOnThreshold(DraggableScrollableNotification notification) {
if (notification.extent <= 0.1) { if (notification.extent <= 0.1) {
logger.i('Dismissing sheet, reached min extend'); logger.i('Dismissing sheet, reached min extend');
@@ -451,7 +455,7 @@ class _SheetContainer extends HookConsumerWidget {
// Dismiss sheet when tapping outside // Dismiss sheet when tapping outside
ref.read(bottomSheetControllerProvider.notifier).requestDismiss(); ref.read(bottomSheetControllerProvider.notifier).requestDismiss();
}, },
child: Container( child: ColoredBox(
color: Colors.black54, // Scrim color: Colors.black54, // Scrim
child: GestureDetector( child: GestureDetector(
onTap: () {}, // Prevent tap from propagating to parent onTap: () {}, // Prevent tap from propagating to parent
@@ -460,18 +464,16 @@ class _SheetContainer extends HookConsumerWidget {
child: switch (displayedSheet) { child: switch (displayedSheet) {
ViewTabsSheet() => ViewTabsSheet() =>
NotificationListener<DraggableScrollableNotification>( NotificationListener<DraggableScrollableNotification>(
key: UniqueKey(),
onNotification: dismissOnThreshold, onNotification: dismissOnThreshold,
child: _ViewTabsSheet(maxChildSize: relativeSafeArea), child: _ViewTabsSheet(maxChildSize: stableMaxChildSize),
), ),
final EditUrlSheet parameter => final EditUrlSheet parameter =>
NotificationListener<DraggableScrollableNotification>( NotificationListener<DraggableScrollableNotification>(
key: UniqueKey(),
onNotification: dismissOnThreshold, onNotification: dismissOnThreshold,
child: _ViewUrlSheet( child: _ViewUrlSheet(
initialTabState: parameter.tabState, initialTabState: parameter.tabState,
maxChildSize: relativeSafeArea, maxChildSize: stableMaxChildSize,
bottomAppBarSize: bottomAppBarSize, bottomAppBarHeight: bottomAppBarHeight,
), ),
), ),
}, },
@@ -649,7 +651,6 @@ class _Browser extends HookConsumerWidget {
} }
}, },
child: _BrowserView( child: _BrowserView(
sheetDisplayed: sheetController.value != null,
isFullscreen: tabInFullScreen, isFullscreen: tabInFullScreen,
pointerMoveEventSink: pointerMoveEventSink, pointerMoveEventSink: pointerMoveEventSink,
), ),
@@ -662,89 +663,79 @@ class _Browser extends HookConsumerWidget {
} }
class _BrowserView extends StatelessWidget { class _BrowserView extends StatelessWidget {
final bool sheetDisplayed;
final bool isFullscreen; final bool isFullscreen;
final StreamSink<Offset>? pointerMoveEventSink; final StreamSink<Offset>? pointerMoveEventSink;
const _BrowserView({ const _BrowserView({
required this.sheetDisplayed,
required this.isFullscreen, required this.isFullscreen,
this.pointerMoveEventSink, this.pointerMoveEventSink,
}); });
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Stack( return SafeArea(
children: [ top: !isFullscreen,
SafeArea( right: !isFullscreen,
top: !isFullscreen, // Bottom SafeArea is handled by the overlay toolbar (BottomAppBar)
right: !isFullscreen, bottom: false,
// Bottom SafeArea is handled by the overlay toolbar (BottomAppBar) left: !isFullscreen,
bottom: false, child: Stack(
left: !isFullscreen, children: [
child: Stack( BrowserView(pointerMoveEventSink: pointerMoveEventSink),
children: [ Positioned(
BrowserView(pointerMoveEventSink: pointerMoveEventSink), bottom: 0,
Positioned( left: 0,
bottom: 0, right: 0,
left: 0, child: Consumer(
right: 0, builder: (context, ref, child) {
child: Consumer( final value = ref.watch(
builder: (context, ref, child) { selectedTabStateProvider.select((state) {
final value = ref.watch( if (state?.isLoading == true) {
selectedTabStateProvider.select((state) { return state?.progress ?? 100;
if (state?.isLoading == true) {
return state?.progress ?? 100;
}
//When not loading we assumed finished
return 100;
}),
);
return Visibility(
visible: value < 100,
child: LinearProgressIndicator(value: value / 100),
);
},
),
),
Positioned(
bottom: 0,
left: 0,
right: 0,
child: Consumer(
builder: (context, ref, child) {
final value = ref.watch(
selectedTabStateProvider.select(
(state) => EdgeInsets.only(
bottom:
(state?.isLoading == true &&
state?.progress != null &&
state!.progress < 100)
? 4.0
: 0.0,
),
),
);
final tabId = ref.watch(selectedTabProvider);
if (tabId == null) {
return const SizedBox.shrink();
} }
return FindInPageWidget(tabId: tabId, padding: value); //When not loading we assumed finished
}, return 100;
), }),
), );
],
return Visibility(
visible: value < 100,
child: LinearProgressIndicator(value: value / 100),
);
},
),
), ),
), Positioned(
if (sheetDisplayed) bottom: 0,
ModalBarrier( left: 0,
color: Theme.of(context).dialogTheme.barrierColor ?? Colors.black54, right: 0,
child: Consumer(
builder: (context, ref, child) {
final value = ref.watch(
selectedTabStateProvider.select(
(state) => EdgeInsets.only(
bottom:
(state?.isLoading == true &&
state?.progress != null &&
state!.progress < 100)
? 4.0
: 0.0,
),
),
);
final tabId = ref.watch(selectedTabProvider);
if (tabId == null) {
return const SizedBox.shrink();
}
return FindInPageWidget(tabId: tabId, padding: value);
},
),
), ),
], ],
),
); );
} }
} }
@@ -752,11 +743,11 @@ class _BrowserView extends StatelessWidget {
class _ViewUrlSheet extends HookConsumerWidget { class _ViewUrlSheet extends HookConsumerWidget {
final double maxChildSize; final double maxChildSize;
final TabState initialTabState; final TabState initialTabState;
final Size bottomAppBarSize; final double bottomAppBarHeight;
const _ViewUrlSheet({ const _ViewUrlSheet({
required this.initialTabState, required this.initialTabState,
required this.bottomAppBarSize, required this.bottomAppBarHeight,
this.maxChildSize = 1.0, this.maxChildSize = 1.0,
}); });
@@ -773,11 +764,12 @@ class _ViewUrlSheet extends HookConsumerWidget {
minChildSize: 0.1, minChildSize: 0.1,
maxChildSize: maxChildSize, maxChildSize: maxChildSize,
builder: (context, scrollController) { builder: (context, scrollController) {
return ClipRRect( return Material(
borderRadius: const BorderRadius.only( borderRadius: const BorderRadius.only(
topLeft: Radius.circular(28), topLeft: Radius.circular(28),
topRight: Radius.circular(28), topRight: Radius.circular(28),
), ),
clipBehavior: Clip.antiAlias,
child: ViewTabSheetWidget( child: ViewTabSheetWidget(
initialTabState: initialTabState, initialTabState: initialTabState,
sheetScrollController: scrollController, sheetScrollController: scrollController,
@@ -796,7 +788,7 @@ class _ViewUrlSheet extends HookConsumerWidget {
} }
}, },
initialHeight: initialHeight, initialHeight: initialHeight,
bottomAppBarHeight: bottomAppBarSize.height, bottomAppBarHeight: bottomAppBarHeight,
), ),
); );
}, },
@@ -825,11 +817,12 @@ class _ViewTabsSheet extends HookConsumerWidget {
minChildSize: 0.1, minChildSize: 0.1,
maxChildSize: maxChildSize, maxChildSize: maxChildSize,
builder: (context, scrollController) { builder: (context, scrollController) {
return ClipRRect( return Material(
borderRadius: const BorderRadius.only( borderRadius: const BorderRadius.only(
topLeft: Radius.circular(28), topLeft: Radius.circular(28),
topRight: Radius.circular(28), topRight: Radius.circular(28),
), ),
clipBehavior: Clip.antiAlias,
child: switch (tabsViewMode) { child: switch (tabsViewMode) {
TabsViewMode.list => ViewTabListWidget( TabsViewMode.list => ViewTabListWidget(
scrollController: scrollController, scrollController: scrollController,
@@ -120,10 +120,19 @@ class BrowserBottomAppBar extends HookConsumerWidget {
@override @override
Widget build(BuildContext context, WidgetRef ref) { Widget build(BuildContext context, WidgetRef ref) {
return BottomAppBar( final bottomPadding = MediaQuery.of(context).padding.bottom;
height: _size.height,
padding: EdgeInsets.zero, return Material(
child: _tabBar, elevation: 3.0,
surfaceTintColor: Theme.of(context).colorScheme.surfaceTint,
color: Theme.of(context).colorScheme.surfaceContainer,
child: Padding(
padding: EdgeInsets.only(bottom: bottomPadding),
child: SizedBox(
height: _size.height,
child: _tabBar,
),
),
); );
} }
@@ -271,8 +280,10 @@ class BrowserTabBar extends HookConsumerWidget {
visible: displayAppBar, visible: displayAppBar,
maintainState: true, maintainState: true,
child: AppBar( child: AppBar(
primary: false,
automaticallyImplyLeading: false, automaticallyImplyLeading: false,
titleSpacing: 8.0, titleSpacing: 8.0,
toolbarHeight: kToolbarHeight,
backgroundColor: backgroundColor:
(containerColor != null && displayedSheet is! ViewTabsSheet) (containerColor != null && displayedSheet is! ViewTabsSheet)
? ContainerColors.forAppBar(containerColor) ? ContainerColors.forAppBar(containerColor)