1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-11-22 12:59:21 +00:00

Add scaffold on dropdown

This commit is contained in:
Pierre HUBERT 2020-05-07 19:15:43 +02:00
parent 97db56ae78
commit c7f970ae70

View File

@ -136,7 +136,10 @@ class _PopupContentBody extends StatelessWidget {
top: offset.dy, top: offset.dy,
width: _overlay_w, width: _overlay_w,
height: _overlay_h, height: _overlay_h,
child: Card(child: onBuild(context)), child: Scaffold(
body: Card(child: onBuild(context)),
backgroundColor: Colors.transparent,
),
) )
], ],
); );