Fix menu setting background color

Signed-off-by: dab246 <tdvu@linagora.com>
(cherry picked from commit c1471d8fd32b504d5da042744e9fe68694fd68d0)
This commit is contained in:
dab246
2023-12-06 09:35:39 +07:00
committed by Dat H. Pham
parent 5bb4249329
commit ceedcb1ced
@@ -14,9 +14,7 @@ class ManageAccountMenuView extends GetWidget<ManageAccountMenuController> {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Drawer( return Scaffold(
elevation: controller.responsiveUtils.isDesktop(context) ? 0 : 16.0,
child: Scaffold(
backgroundColor: Colors.white, backgroundColor: Colors.white,
body: SafeArea(right: false, bottom: false, body: SafeArea(right: false, bottom: false,
child: Column( child: Column(
@@ -151,7 +149,6 @@ class ManageAccountMenuView extends GetWidget<ManageAccountMenuController> {
] ]
) )
), ),
)
); );
} }
} }