CellFilledButton constructor

const CellFilledButton({
  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. ValueCell<ButtonStyle?>? style,
  8. ValueCell<bool> autofocus = const ValueCell.value(false),
  9. ValueCell<Clip?> clipBehavior = const ValueCell.value(Clip.none),
  10. required ValueCell<Widget?> child,
})

Implementation

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