NavListTile constructor
const
NavListTile({
- Key? key,
- bool inDrawer = false,
- required NavItemPosition? itemPosition,
- AnimationType animationType = AnimationType.fade,
- double? indicatorLineThickness = 4,
- BoxDecoration? customDecoration,
- PageIndicator? pageIndicator = PageIndicator.line,
- required int selectedPageIndex,
- required dynamic onPageSelected(),
- required NavItem data,
Implementation
const NavListTile(
{Key? key,
this.inDrawer = false,
required this.itemPosition,
this.enableRouteNavigation = true,
this.animationType = AnimationType.fade,
this.indicatorLineThickness = 4,
this.customDecoration,
this.pageIndicator = PageIndicator.line,
required this.selectedPageIndex,
required this.onPageSelected,
required this.data,
this.navTextStyle})
: super(key: key);