FABBottomAppBar constructor
FABBottomAppBar({
- List<
FABBottomAppBarItem> ? items, - String? centerItemText,
- double height = 60.0,
- double iconSize = 24.0,
- Color? backgroundColor,
- Color? color,
- Color? selectedColor,
- NotchedShape? notchedShape,
- ValueChanged<
int?> ? onTabSelected,
Implementation
FABBottomAppBar({
this.items,
this.centerItemText,
this.height: 60.0,
this.iconSize: 24.0,
this.backgroundColor,
this.color,
this.selectedColor,
this.notchedShape,
this.onTabSelected,
}) {
assert(this.items!.length == 2 || this.items!.length == 4);
}