CLNavTile constructor

const CLNavTile({
  1. Key? key,
  2. required String label,
  3. required VoidCallback onTap,
  4. Widget iconBuilder(
    1. Color color,
    2. double size
    )?,
  5. Widget? trailing,
  6. bool selected = false,
  7. bool strongHover = false,
  8. double indent = 0,
})

Implementation

const CLNavTile({
  super.key,
  required this.label,
  required this.onTap,
  this.iconBuilder,
  this.trailing,
  this.selected = false,
  this.strongHover = false,
  this.indent = 0,
});