MUIPrimaryListTile constructor
const
MUIPrimaryListTile({
- Key? key,
- required Widget title,
- required Widget description,
- Widget? leading,
- Widget? action,
- Color bgColor = Colors.black,
- double maxWidth = 430,
- double borderRadius = 10,
- VoidCallback? onTitlePressed,
- VoidCallback? onDescriptionPressed,
- VoidCallback? onPressed,
Implementation
const MUIPrimaryListTile({
super.key,
required this.title,
required this.description,
this.leading,
this.action,
this.bgColor = Colors.black,
this.maxWidth = 430,
this.borderRadius = 10,
this.onTitlePressed,
this.onDescriptionPressed,
this.onPressed,
});