FloatingButtonStyles constructor
FloatingButtonStyles({
- Color? colorFloatingButtonLeft = Colors.red,
- Color? colorFloatingButtonTop = Colors.green,
- Color? colorFloatingButtonRight = Colors.blue,
- Color? colorFloatingCenterButton = Colors.blue,
- IconData? iconFloatingCenterButton = Icons.add,
- IconData? iconFloatingLeftButton = Icons.add,
- IconData? iconFloatingTopButton = Icons.add,
- IconData? iconFloatingRightButton = Icons.add,
- double? elevationOfTheThreeFloatingButtons,
- double? elevationFloatingCenterButton,
Sets the styles for the center floatingButton and the three floatingButtons that show up when the center click is pressed
Implementation
FloatingButtonStyles({
this.colorFloatingButtonLeft = Colors.red,
this.colorFloatingButtonTop = Colors.green,
this.colorFloatingButtonRight = Colors.blue,
this.colorFloatingCenterButton = Colors.blue,
this.iconFloatingCenterButton = Icons.add,
this.iconFloatingLeftButton = Icons.add,
this.iconFloatingTopButton = Icons.add,
this.iconFloatingRightButton = Icons.add,
this.elevationOfTheThreeFloatingButtons,
this.elevationFloatingCenterButton,
});