SettingTile constructor

const SettingTile({
  1. Key? key,
  2. Widget? header,
  3. Widget? body,
  4. Widget? content,
  5. Widget? leading,
  6. Widget? tailing,
  7. Widget? subscription,
  8. Color? background,
  9. Color? rippleColor,
  10. Color? pressedColor,
  11. EdgeInsets padding = const EdgeInsets.symmetric(horizontal: 24, vertical: 12),
  12. OnViewClickListener? onClick,
})

Implementation

const SettingTile({
  super.key,
  this.header,
  this.body,
  this.content,
  this.leading,
  this.tailing,
  this.subscription,
  this.background,
  this.rippleColor,
  this.pressedColor,
  this.padding = const EdgeInsets.symmetric(
    horizontal: 24,
    vertical: 12,
  ),
  this.onClick,
});