ItinereoAppBar constructor

const ItinereoAppBar({
  1. Key? key,
  2. required String title,
  3. required Color textColor,
  4. required Color pillColor,
  5. required Color topBarColor,
  6. bool? isBackButtonVisible = false,
  7. VoidCallback? onBack,
  8. bool showPill = true,
})

Creates an ItinereoAppBar widget with customizable sections and optional back navigation

Implementation

const ItinereoAppBar({
  super.key,
  required this.title,
  required this.textColor,
  required this.pillColor,
  required this.topBarColor,
  this.isBackButtonVisible = false,
  this.onBack,
  this.showPill = true,
});