Change Type of sec act but

This commit is contained in:
2024-10-01 13:27:21 +02:00
parent c4692710cd
commit 47186d55cd

View File

@@ -9,7 +9,7 @@ class MIHLayoutBuilder extends StatefulWidget {
final MIHHeader header; final MIHHeader header;
final MIHBody body; final MIHBody body;
final MIHAppDrawer? actionDrawer; final MIHAppDrawer? actionDrawer;
final MIHAppDrawer? secondaryActionDrawer; final Widget? secondaryActionDrawer;
final Widget? bottomNavBar; final Widget? bottomNavBar;
//final String type; //final String type;
@@ -75,7 +75,7 @@ class _MIHLayoutBuilderState extends State<MIHLayoutBuilder> {
return Scaffold( return Scaffold(
//drawerEnableOpenDragGesture: true, //drawerEnableOpenDragGesture: true,
drawer: widget.actionDrawer, drawer: widget.actionDrawer,
endDrawer: widget.secondaryActionButton, endDrawer: widget.secondaryActionDrawer,
body: SafeArea( body: SafeArea(
child: SizedBox( child: SizedBox(
width: screenSize.width, width: screenSize.width,