SolidNavDrawer constructor
const
SolidNavDrawer({ - Key? key,
- SolidNavUserInfo? userInfo,
- required List<SolidNavTab> tabs,
- required int selectedIndex,
- required void onTabSelected(
- int
),
- void onLogout(
- BuildContext
)?,
- IconData? logoutIcon,
- String? logoutText,
- bool showLogout = true,
- ShapeBorder? drawerShape,
})
Implementation
const SolidNavDrawer({
super.key,
this.userInfo,
required this.tabs,
required this.selectedIndex,
required this.onTabSelected,
this.onLogout,
this.logoutIcon,
this.logoutText,
this.showLogout = true,
this.additionalMenuItems,
this.drawerShape,
});