cancelBtnOnly method
Implementation
Widget cancelBtnOnly() {
return Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
UFUButton(
text: widget.prefixBtnText?.toUpperCase(),
textColor: AppTheme.themeColors.text,
size: UFUButtonSize.small,
disabled: widget.disableButtons,
colorType: widget.prefixBtnColorType ?? UFUButtonColorType.lightGray,
onPressed: widget.onTapPrefix ?? () {
Navigator.pop(context);
},
),
],
);
}