diff --git a/lib/ui/widgets/tablet_mode/appbar_custom_dropdown_widget.dart b/lib/ui/widgets/tablet_mode/appbar_custom_dropdown_widget.dart index 80c3b4e..d26e0d8 100644 --- a/lib/ui/widgets/tablet_mode/appbar_custom_dropdown_widget.dart +++ b/lib/ui/widgets/tablet_mode/appbar_custom_dropdown_widget.dart @@ -136,7 +136,10 @@ class _PopupContentBody extends StatelessWidget { top: offset.dy, width: _overlay_w, height: _overlay_h, - child: Card(child: onBuild(context)), + child: Scaffold( + body: Card(child: onBuild(context)), + backgroundColor: Colors.transparent, + ), ) ], );