CodeNestOutlinedBtn constructor

const CodeNestOutlinedBtn({
  1. Key? key,
  2. required String label,
  3. required VoidCallback? onPressed,
  4. bool isLoading = false,
  5. Color? borderColor,
  6. Color? foregroundColor,
  7. TextStyle? textStyle,
  8. double borderRadius = 12.0,
  9. double borderWidth = 1.5,
  10. EdgeInsetsGeometry padding = const EdgeInsets.symmetric(vertical: 14, horizontal: 24),
})

Implementation

const CodeNestOutlinedBtn({
  super.key,
  required this.label,
  required this.onPressed,
  this.isLoading = false,
  this.borderColor,
  this.foregroundColor,
  this.textStyle,
  this.borderRadius = 12.0,
  this.borderWidth = 1.5,
  this.padding = const EdgeInsets.symmetric(vertical: 14, horizontal: 24),
});