OutlinedButton.text constructor
OutlinedButton.text(})
Implementation
factory OutlinedButton.text(
String text, {
final Color? color,
final double? minWidth,
final double? height,
final bool uppercase = true,
bool busy = false,
Color? busyColor,
required void Function() onPressed,
Duration? loadingDebounce,
BorderRadius? borderRadius,
bool? guessTextColor,
EdgeInsets? padding,
Key? key,
bool disabled = false,
}) {
return OutlinedButton(
color: color,
child: GBText(uppercase ? text.toUpperCase() : text),
minWidth: minWidth,
height: height,
onPressed: onPressed,
busy: busy,
busyColor: busyColor,
loadingDebounce: loadingDebounce,
borderRadius: borderRadius,
guessTextColor: guessTextColor,
padding: padding,
key: key,
disabled: disabled,
);
}