ActionCircleButton constructor
const
ActionCircleButton({
- Key? key,
- VoidCallback? onTap,
- IconData icon = Icons.delete,
- double radius = 25.0,
- Color? backgroundColor = Colors.grey,
- Color? foregroundColor = Colors.black,
- bool isVisible = true,
- EdgeInsetsGeometry padding = const EdgeInsets.all(6.0),
- Widget? child,
Implementation
const ActionCircleButton({
Key? key,
this.onTap,
this.icon = Icons.delete,
this.radius = 25.0,
this.backgroundColor = Colors.grey,
this.foregroundColor = Colors.black,
this.isVisible = true,
this.padding = const EdgeInsets.all(6.0),
this.child,
}) : super(key: key);