OutlinedRoundedButton constructor
const
OutlinedRoundedButton(
- String text, {
- Key? key,
- required Function onPressed,
- double? width,
- double? height,
- Color? color,
- Color? borderColor,
- double? borderWidth,
- Color? textColor,
- IconData? icon,
- double? iconSize,
- Color? iconColor,
- ValueNotifier<
BoxShadow> ? shadow, - double margin = 0.0,
- double radius = 24,
- bool isDisabled = false,
Creates an OutlinedRoundedButton widget.
The text and onPressed parameters must not be null.
Implementation
const OutlinedRoundedButton(
String text, {
super.key,
required super.onPressed,
super.width,
super.height,
super.color,
super.borderColor,
super.borderWidth,
super.textColor,
super.icon,
super.iconSize,
super.iconColor,
super.shadow,
super.margin,
super.radius,
super.isDisabled = false,
}) : super(text: text);