buttonContent static method
Widget
buttonContent({
- Key? key,
- required ButtonContent content,
- ButtonType type = ButtonType.filled,
- ButtonSize size = ButtonSize.l,
- VoidCallback? onClick,
- bool enabled = true,
- ButtonColorType colorType = ButtonColorType.primary,
Implementation
static Widget buttonContent({
Key? key,
required ButtonContent content,
ButtonType type = ButtonType.filled,
ButtonSize size = ButtonSize.l,
VoidCallback? onClick,
bool enabled = true,
ButtonColorType colorType = ButtonColorType.primary,
}) {
return _AtomicxButton(
key: key,
type: type,
content: content,
size: size,
onClick: onClick,
enabled: enabled,
colorType: colorType,
);
}