MephistoBottomBar constructor

const MephistoBottomBar({
  1. Key? key,
  2. required int activeIndex,
  3. required Function onTap,
  4. required List<Widget> bottomBarItems,
  5. bool? showLabels = false,
})

Implementation

const MephistoBottomBar(
    {super.key,
    required this.activeIndex,
    required this.onTap,
    required this.bottomBarItems,
    this.showLabels = false});