DraftModeUIPageNavigationItemScreen constructor

const DraftModeUIPageNavigationItemScreen({
  1. Key? key,
  2. required Widget screen,
  3. String? text,
  4. IconData? icon,
  5. bool iconExpanded = false,
  6. Color? iconColor,
  7. double? iconSize,
  8. String? badge,
  9. bool replace = true,
})

Implementation

const DraftModeUIPageNavigationItemScreen({
  super.key,
  required this.screen,
  this.text,
  this.icon,
  this.iconExpanded = false,
  this.iconColor,
  this.iconSize,
  this.badge,
  this.replace = true,
});