SkOutlinedButton constructor

const SkOutlinedButton({
  1. Key? key,
  2. required String label,
  3. Color? borderColor,
  4. Color? textColor,
  5. double? w,
  6. double? h,
  7. double? borderRadius,
  8. TextStyle? textStyle,
  9. EdgeInsetsGeometry? padding,
  10. double? borderWidth,
  11. ShapeBorder? shape,
  12. required VoidCallback? onTap,
  13. VoidCallback? onLongPress,
  14. FocusNode? focusNode,
  15. bool autofocus = false,
  16. MouseCursor? mouseCursor,
})

Implementation

const SkOutlinedButton({
  super.key,
  required this.label,
  this.borderColor,
  this.textColor,
  this.w,
  this.h,
  this.borderRadius,
  this.textStyle,
  this.padding,
  this.borderWidth,
  this.shape,
  required this.onTap,
  this.onLongPress,
  this.focusNode,
  this.autofocus = false,
  this.mouseCursor,
});