BottomBarBubble constructor
const
BottomBarBubble({
- Key? key,
- required List<
BottomBarItem> items, - int selectedIndex = 0,
- double height = 71,
- double bubbleSize = 10,
- Color color = Colors.green,
- Color backgroundColor = Colors.white,
- ValueChanged<
int> ? onSelect,
Implementation
const BottomBarBubble({
Key? key,
required this.items,
this.selectedIndex = 0,
this.height = 71,
this.bubbleSize = 10,
this.color = Colors.green,
this.backgroundColor = Colors.white,
this.onSelect,
}) : super(key: key);