FloatingActionButtonScreen constructor
const
FloatingActionButtonScreen({
- Key? key,
- required List<
FloatingButtonProps> childrenProps, - EdgeInsetsGeometry? padding,
- ShapeBorder? shape,
- Color? mainButtonColor,
- bool isDismissible = false,
- Color? shadowColor,
- TextDirection direction = TextDirection.rtl,
- TextStyle? labelStyle,
- Duration duration = const Duration(milliseconds: 250),
- Widget? openIcon = const Icon(Icons.add, color: Colors.white),
- Widget? closeIcon = const Icon(Icons.close, color: Colors.white),
Implementation
const FloatingActionButtonScreen({
super.key,
required this.childrenProps,
this.padding,
this.shape,
this.mainButtonColor,
this.isDismissible = false,
this.shadowColor,
this.direction = TextDirection.rtl,
this.labelStyle,
// this.shadowCurve = Curves.linear,
// this.buttonsCurve = Curves.linear,
this.duration = const Duration(milliseconds: 250),
this.openIcon = const Icon(Icons.add, color: Colors.white),
this.closeIcon = const Icon(Icons.close, color: Colors.white),
});