elevatedBtn method
ElevatedButton
elevatedBtn({
- Key? key,
- VoidCallback? onPressed,
- VoidCallback? onLongPress,
- ValueChanged<
bool> ? onHover, - ValueChanged<
bool> ? onFocusChange, - ButtonStyle? style,
- FocusNode? focusNode,
- bool autofocus = false,
- Clip clip = Clip.none,
- MaterialStatesController? statesController,
see ElevatedButton
Implementation
ElevatedButton elevatedBtn({
Key? key,
VoidCallback? onPressed,
VoidCallback? onLongPress,
ValueChanged<bool>? onHover,
ValueChanged<bool>? onFocusChange,
ButtonStyle? style,
FocusNode? focusNode,
bool autofocus = false,
Clip clip = Clip.none,
MaterialStatesController? statesController,
}) =>
ElevatedButton(
key: key,
onPressed: onPressed,
onLongPress: onLongPress,
onHover: onHover,
onFocusChange: onFocusChange,
style: style,
focusNode: focusNode,
autofocus: autofocus,
clipBehavior: clip,
statesController: statesController,
child: this);