OutlinedButtonWidget constructor
OutlinedButtonWidget({})
Implementation
OutlinedButtonWidget({
super.key,
required String text,
VoidCallback? onTap,
Color? textColor,
Color? borderColor,
double? width,
double? height,
double? borderRadius,
}) : super(
text: text,
onTap: onTap,
textColor: textColor ?? ColorResource.buttonColor,
backgroundColor: Colors.transparent,
borderColor: borderColor ?? ColorResource.buttonColor,
showBorder: true,
width: width,
height: height,
borderRadius: borderRadius,
);