AutoDropButtonStyle constructor
const
AutoDropButtonStyle({
- List<
BoxShadow> ? boxShadow = const [BoxShadow(color: Color(0xFFCDE2FE), blurRadius: 3, offset: Offset(0, 1))], - Border? border,
- MainAxisAlignment? mainAxisAlignment,
- Color backgroundColor = Colors.white,
- Color primaryColor = Colors.black87,
- BoxConstraints? constraints,
- double height = 50,
- double radius = 8.0,
- double? width,
- double elevation = 1,
- EdgeInsets padding = EdgeInsets.zero,
- ShapeBorder? shape,
Implementation
const AutoDropButtonStyle({
this.boxShadow = const [
BoxShadow(
color: Color(0xFFCDE2FE),
blurRadius: 3,
offset: Offset(0, 1),
),
],
this.border,
this.mainAxisAlignment,
this.backgroundColor = Colors.white,
this.primaryColor = Colors.black87,
this.constraints,
this.height = 50,
this.radius = 8.0,
this.width,
this.elevation = 1,
this.padding = EdgeInsets.zero,
this.shape,
});