fix(ui): crash on tablets

This commit is contained in:
cogwheel0
2025-12-08 20:41:59 +05:30
parent fd10ea0db0
commit 286176bc3e
2 changed files with 5 additions and 2 deletions

View File

@@ -239,7 +239,10 @@ class ResponsiveDrawerLayoutState extends State<ResponsiveDrawerLayout>
child: ClipRect(
child: IgnorePointer(
ignoring: widget.tabletDismissible && !_isTabletDocked,
child: widget.drawer,
child: Material(
color: theme.surfaceBackground,
child: widget.drawer,
),
),
),
),