ArcaneButton.ghost constructor

const ArcaneButton.ghost({
  1. String? label,
  2. Component? child,
  3. Component? icon,
  4. Component? trailing,
  5. void onPressed()?,
  6. ButtonSize size = ButtonSize.medium,
  7. bool disabled = false,
  8. bool loading = false,
  9. bool fullWidth = false,
  10. Key? key,
})

Ghost button constructor

Implementation

const ArcaneButton.ghost({
  this.label,
  this.child,
  this.icon,
  this.trailing,
  this.onPressed,
  this.size = ButtonSize.medium,
  this.disabled = false,
  this.loading = false,
  this.fullWidth = false,
  super.key,
})  : style = ButtonStyle.ghost,
      variant = null;