BaseNavigationBar constructor

const BaseNavigationBar({
  1. Key? key,
  2. Color? bgColor,
  3. double? radius,
  4. double? containerHeight,
  5. required List<BaseNavigationBarItem> items,
  6. required dynamic onItemSelected(
    1. int
    ),
  7. Color? color,
  8. Color? selectedColor,
  9. TextStyle? style,
  10. double? heightIcon,
  11. double? widthIcon,
  12. required int indexSlelected,
  13. bool? isShowText,
  14. List<BoxShadow>? boxShadow,
})

Implementation

const BaseNavigationBar(
    {Key? key,
    this.bgColor,
    this.radius,
    this.containerHeight,
    required this.items,
    required this.onItemSelected,
    this.color,
    this.selectedColor,
    this.style,
    this.heightIcon,
    this.widthIcon,
    required this.indexSlelected,
    this.isShowText,
    this.boxShadow})
    : super(key: key);