ModalNavbar constructor
const
ModalNavbar({
- Key? key,
- VoidCallback? onBack,
- VoidCallback? onTapTitle,
- required Widget body,
- required String title,
- NavbarActionButton? leftAction,
- bool safeAreaLeft = false,
- bool safeAreaRight = false,
- bool safeAreaBottom = true,
- bool noClose = false,
- bool divider = true,
Implementation
const ModalNavbar({
super.key,
this.onBack,
this.onTapTitle,
required this.body,
required this.title,
this.leftAction,
this.safeAreaLeft = false,
this.safeAreaRight = false,
this.safeAreaBottom = true,
this.noClose = false,
this.divider = true,
});