MUILogoFooter constructor
const
MUILogoFooter({
- Key? key,
- required Widget logo,
- required String companyName,
- TextStyle companyNameStyle = const TextStyle(fontSize: 16, fontWeight: FontWeight.w500),
- TextStyle itemsStyle = const TextStyle(fontSize: 16, fontWeight: FontWeight.w500),
- TextStyle hoverStyle = const TextStyle(fontSize: 16, fontWeight: FontWeight.w500, color: Colors.blue),
- double logoHeight = 40,
Implementation
const MUILogoFooter({
super.key,
required this.logo,
required this.footerItems,
required this.companyName,
this.companyNameStyle = const TextStyle(
fontSize: 16,
fontWeight: FontWeight.w500,
),
this.itemsStyle = const TextStyle(
fontSize: 16,
fontWeight: FontWeight.w500,
),
this.hoverStyle = const TextStyle(
fontSize: 16,
fontWeight: FontWeight.w500,
color: Colors.blue,
),
this.logoHeight = 40,
});