ArnaTab constructor

const ArnaTab({
  1. Key? key,
  2. required String label,
  3. Widget? icon,
  4. required WidgetBuilder builder,
  5. bool pinned = false,
  6. Color? accentColor,
  7. String? semanticLabel,
})

Creates an Arna-styled tab.

Implementation

const ArnaTab({
  this.key,
  required this.label,
  this.icon,
  required this.builder,
  this.pinned = false,
  this.accentColor,
  this.semanticLabel,
});