FRaisedButton constructor
const
FRaisedButton({
- Key? key,
- Widget? child,
- String? text,
- VoidCallback? onPressed,
- double borderRadius = 5,
- Color? color,
- TextStyle? textStyle = const TextStyle(color: Color(0xFFF4F4F4), fontSize: SizeConstants.fontSizeButton),
- BorderSide borderSide = BorderSide.none,
Implementation
const FRaisedButton(
{Key? key,
this.child,
this.text,
this.onPressed,
this.borderRadius = 5,
this.color,
this.textStyle = const TextStyle(
color: Color(0xFFF4F4F4), fontSize: SizeConstants.fontSizeButton),
this.borderSide = BorderSide.none})
: super(key: key);