CustomNavigationBar constructor

const CustomNavigationBar({
  1. Key? key,
  2. int currentIndex = 0,
  3. List<Widget> items = const [],
  4. dynamic onTap(
    1. int
    )?,
})

Implementation

const CustomNavigationBar({
  super.key,
  this.currentIndex = 0,
  this.items = const [],
  this.onTap,
});