JidoujishoIconButton constructor
- {required IconData icon,
- required String tooltip,
- FutureOr<
void> onTap( - FutureOr<
void> onTapDown( )?, - bool busy = false,
- bool enabled = true,
- double? size,
- ShapeBorder shapeBorder = const CircleBorder(),
- Color? backgroundColor,
- Color? enabledColor,
- Color? disabledColor,
- BoxConstraints? constraints,
- EdgeInsets? padding,
- bool isWideTapArea = false,
- Key? key}
Creates a busy icon button. Default values rely on IconTheme.
Implementation
const JidoujishoIconButton({
required this.icon,
required this.tooltip,
this.onTap,
this.onTapDown,
this.busy = false,
this.enabled = true,
this.size,
this.shapeBorder = const CircleBorder(),
this.backgroundColor,
this.enabledColor,
this.disabledColor,
this.constraints,
this.padding,
this.isWideTapArea = false,
super.key,
});