FABBottomAppBar constructor
FABBottomAppBar({
- List<
FABBottomAppBarItem> ? items, - String? centerItemText,
- double? height = 60.0,
- double? iconSize = 24.0,
- Color? backgroundColor,
- Color? inActiveColor,
- Color? activeColor,
- NotchedShape? notchedShape,
- ValueChanged<
int> ? onTabSelected, - bool centerSelected = false,
Implementation
FABBottomAppBar({
this.items,
this.centerItemText,
this.height: 60.0,
this.iconSize: 24.0,
this.backgroundColor,
this.inActiveColor,
this.activeColor,
this.notchedShape,
this.onTabSelected,
this.centerSelected = false,
}) {
assert(this.items!.length % 2 == 0);
}