MUILogoFooter constructor

const MUILogoFooter({
  1. Key? key,
  2. required List<MUIFooterItem> footerItems,
  3. required String companyName,
  4. TextStyle companyNameStyle = const TextStyle(fontSize: 16, fontWeight: FontWeight.w500),
  5. TextStyle itemsStyle = const TextStyle(fontSize: 16, fontWeight: FontWeight.w500),
  6. TextStyle hoverStyle = const TextStyle(fontSize: 16, fontWeight: FontWeight.w500, color: Colors.blue),
  7. 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,
});