ZetaNavigationBar.split constructor

const ZetaNavigationBar.split({
  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 and splits the items in half.

Implementation

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