CodeNestOutlinedBtn constructor
const
CodeNestOutlinedBtn({
- Key? key,
- required String label,
- required VoidCallback? onPressed,
- bool isLoading = false,
- Color? borderColor,
- Color? foregroundColor,
- TextStyle? textStyle,
- double borderRadius = 12.0,
- double borderWidth = 1.5,
- 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),
});