CupertinoNavigationBarData constructor

CupertinoNavigationBarData({
  1. Widget? title,
  2. Color? backgroundColor,
  3. Widget? leading,
  4. Key? widgetKey,
  5. bool? automaticallyImplyLeading,
  6. String? previousPageTitle,
  7. bool? automaticallyImplyMiddle,
  8. EdgeInsetsDirectional? padding,
  9. Widget? trailing,
  10. Border? border,
  11. bool? transitionBetweenRoutes,
  12. Brightness? brightness,
  13. Object? heroTag,
  14. bool noMaterialParent = false,
})

Implementation

CupertinoNavigationBarData({
  super.title,
  super.backgroundColor,
  super.leading,
  super.widgetKey,
  super.automaticallyImplyLeading,
  this.previousPageTitle,
  this.automaticallyImplyMiddle,
  this.padding,
  this.trailing,
  this.border,
  this.transitionBetweenRoutes,
  this.brightness,
  this.heroTag,
  this.noMaterialParent = false,
});