ZetaNavigationBar.divided constructor

const ZetaNavigationBar.divided({
  1. bool? rounded,
  2. Key? key,
  3. required List<ZetaNavigationBarItem> items,
  4. int? currentIndex,
  5. void onTap(
    1. int value
    )?,
  6. int? dividerIndex,
  7. String? semanticLabel,
})

Creates a ZetaNavigationBar with a divider after the item at the given index.

Implementation

const ZetaNavigationBar.divided({
  super.rounded,
  super.key,
  required this.items,
  this.currentIndex,
  this.onTap,
  this.dividerIndex,
  this.semanticLabel,
})  : splitItems = false,
      action = null;