BubbleBottomNavBar constructor

const BubbleBottomNavBar({
  1. Key? key,
  2. required List<BubbleGroup> groups,
  3. Color? activeIconColor = Colors.white,
  4. Color? inactiveIconColor = Colors.grey,
  5. Color? activeBackgroundColor = const Color(0xFF155FA0),
  6. Color? defaultGroupBackgroundColor = Colors.white,
  7. int initialIndex = 0,
  8. bool extendBody = true,
})

Implementation

const BubbleBottomNavBar({
  super.key,
  required this.groups,
  this.activeIconColor = Colors.white,
  this.inactiveIconColor = Colors.grey,
  this.activeBackgroundColor = const Color(0xFF155FA0), // Standard deep blue
  this.defaultGroupBackgroundColor = Colors.white,
  this.initialIndex = 0,
  this.extendBody = true,
});