LiveElevatedButton constructor

const LiveElevatedButton({
  1. Key? key,
  2. ValueCell<bool> enabled = const ValueCell.value(true),
  3. MetaCell<void>? press,
  4. MetaCell<void>? longPress,
  5. MetaCell<bool>? onHover,
  6. MetaCell<bool>? onFocusChange,
  7. ButtonStyle? style,
  8. bool autofocus = false,
  9. Clip? clipBehavior,
  10. required Widget? child,
})

Implementation

const LiveElevatedButton({
  super.key,
  this.enabled = const ValueCell.value(true),
  this.press,
  this.longPress,
  this.onHover,
  this.onFocusChange,
  this.style,
  this.autofocus = false,
  this.clipBehavior,
  required this.child,
});