From 47186d55cdb95af917a4f570416b6ca4a0de0e37 Mon Sep 17 00:00:00 2001 From: yaso Date: Tue, 1 Oct 2024 13:27:21 +0200 Subject: [PATCH] Change Type of sec act but --- .../lib/mih_components/mih_layout/mih_layout_builder.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Frontend/patient_manager/lib/mih_components/mih_layout/mih_layout_builder.dart b/Frontend/patient_manager/lib/mih_components/mih_layout/mih_layout_builder.dart index 266d5598..d6a0c42b 100644 --- a/Frontend/patient_manager/lib/mih_components/mih_layout/mih_layout_builder.dart +++ b/Frontend/patient_manager/lib/mih_components/mih_layout/mih_layout_builder.dart @@ -9,7 +9,7 @@ class MIHLayoutBuilder extends StatefulWidget { final MIHHeader header; final MIHBody body; final MIHAppDrawer? actionDrawer; - final MIHAppDrawer? secondaryActionDrawer; + final Widget? secondaryActionDrawer; final Widget? bottomNavBar; //final String type; @@ -75,7 +75,7 @@ class _MIHLayoutBuilderState extends State { return Scaffold( //drawerEnableOpenDragGesture: true, drawer: widget.actionDrawer, - endDrawer: widget.secondaryActionButton, + endDrawer: widget.secondaryActionDrawer, body: SafeArea( child: SizedBox( width: screenSize.width,