From c7f970ae706f5f30c5d54df6ea3c6e6eb36e8f71 Mon Sep 17 00:00:00 2001 From: Pierre HUBERT Date: Thu, 7 May 2020 19:15:43 +0200 Subject: [PATCH] Add scaffold on dropdown --- .../widgets/tablet_mode/appbar_custom_dropdown_widget.dart | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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, + ), ) ], );