FUITile constructor

const FUITile({
  1. Key? key,
  2. required String title,
  3. String? subtitle,
  4. IconData? icon,
  5. Widget? leading,
  6. Widget? trailing,
  7. VoidCallback? onTap,
  8. bool enabled = true,
  9. bool showChevron = true,
  10. double minHeight = FUITokens.tileMinHeight,
})

Implementation

const FUITile({
  super.key,
  required this.title,
  this.subtitle,
  this.icon,
  this.leading,
  this.trailing,
  this.onTap,
  this.enabled = true,
  this.showChevron = true,
  this.minHeight = FUITokens.tileMinHeight,
});