AppOutlineButton constructor
const
AppOutlineButton({
- Key? key,
- required Widget text,
- double? width,
- double? height,
- Color? borderColor,
- double? borderWidth,
- double? borderRadius,
- Color? backgroundColor,
- Color? disabledColor,
- VoidCallback? onTap,
- Widget? prefixIcon,
- Widget? suffixIcon,
- bool isLoading = false,
- bool isDisabled = false,
- List<
BoxShadow> ? boxShadow, - TextStyle? textStyle,
Creates a new AppOutlineButton.
Implementation
const AppOutlineButton({
super.key,
required this.text,
this.width,
this.height,
this.borderColor,
this.borderWidth,
this.borderRadius,
this.backgroundColor,
this.disabledColor,
this.onTap,
this.prefixIcon,
this.suffixIcon,
this.isLoading = false,
this.isDisabled = false,
this.boxShadow,
this.textStyle,
});