MUISitemapFooter constructor
const
MUISitemapFooter({
- Key? key,
- required List<
MUISitemapCategory> categories, - 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),
- TextStyle categoryNameStyle = const TextStyle(fontSize: 14, fontWeight: FontWeight.w700, color: Colors.grey),
- MUISitemapAlignment alignment = MUISitemapAlignment.left,
Implementation
const MUISitemapFooter({
super.key,
required this.categories,
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.categoryNameStyle = const TextStyle(
fontSize: 14,
fontWeight: FontWeight.w700,
color: Colors.grey,
),
this.alignment = MUISitemapAlignment.left,
});