PlexFormFieldButton constructor
const
PlexFormFieldButton({
- Key? key,
- PlexFormFieldGeneric properties = const PlexFormFieldGeneric.empty(),
- PlexButtonType buttonType = PlexButtonType.elevated,
- FocusNode? focusNode,
- Widget? buttonIcon,
- dynamic buttonClick()?,
- ButtonStyle? buttonStyle,
Creates a unified button widget.
The properties
parameter provides basic configuration like title, margins, etc.
The buttonType
parameter determines which style of button to render.
Implementation
const PlexFormFieldButton({
super.key,
this.properties = const PlexFormFieldGeneric.empty(),
this.buttonType = PlexButtonType.elevated,
this.focusNode,
this.buttonIcon,
this.buttonClick,
this.buttonStyle,
});