KatButtonNavBar constructor

const KatButtonNavBar({
  1. Key? key,
  2. required String label,
  3. Color? backgroundColor,
  4. OutlinedBorder? shape,
  5. VoidCallback? onPressed,
})

Implementation

const KatButtonNavBar({
  super.key,
  required this.label,
  this.backgroundColor,
  this.shape,
  this.onPressed,
});