LeadingConfig constructor
const
LeadingConfig({
- Widget? icon,
- String? text,
- TextStyle textStyle = const TextStyle(fontSize: 16, fontWeight: FontWeight.normal, color: Colors.black),
- TextOverflow textOverflow = TextOverflow.ellipsis,
- double spacing = 4.0,
- VoidCallback? onPressed,
- EdgeInsets padding = const EdgeInsets.symmetric(horizontal: 16.0),
- double maxWidth = 120.0,
Implementation
const LeadingConfig({
this.icon,
this.text,
this.textStyle = const TextStyle(
fontSize: 16,
fontWeight: FontWeight.normal,
color: Colors.black,
),
this.textOverflow = TextOverflow.ellipsis,
this.spacing = 4.0,
this.onPressed,
this.padding = const EdgeInsets.symmetric(horizontal: 16.0),
this.maxWidth = 120.0,
});