MacosTab constructor

const MacosTab({
  1. Key? key,
  2. required String label,
  3. bool active = false,
})

A macOS-style navigational button used to move between the views of a MacosTabView.

Implementation

const MacosTab({
  super.key,
  required this.label,
  this.active = false,
});