KinListTile constructor

const KinListTile({
  1. Key? key,
  2. required String title,
  3. String? subtitle,
  4. Widget? leading,
  5. Widget? trailing,
  6. VoidCallback? onTap,
  7. VoidCallback? onLongPress,
  8. EdgeInsetsGeometry? padding,
  9. BorderRadius? borderRadius,
  10. Color? backgroundColor,
  11. bool showDivider = false,
  12. KinListTileDensity density = KinListTileDensity.standard,
})

Implementation

const KinListTile({
  super.key,
  required this.title,
  this.subtitle,
  this.leading,
  this.trailing,
  this.onTap,
  this.onLongPress,
  this.padding,
  this.borderRadius,
  this.backgroundColor,
  this.showDivider = false,
  this.density = KinListTileDensity.standard,
});