container method
Widget
container({
- double? width,
- double? height,
- Alignment? alignment,
- Color? backgroundColor,
- double borderWidth = 1,
- double radius = 1,
- Color borderColor = Colors.transparent,
- EdgeInsets? padding,
- EdgeInsets? margin,
- BoxConstraints? constraints,
Implementation
Widget container({
double? width,
double? height,
Alignment? alignment,
Color? backgroundColor,
double borderWidth = 1,
double radius = 1,
Color borderColor = Colors.transparent,
EdgeInsets? padding,
EdgeInsets? margin,
BoxConstraints? constraints,
}) => Container(
clipBehavior: Clip.hardEdge,
constraints: constraints,
width: width,
height: height,
padding: padding,
margin: margin,
alignment: alignment,
decoration: BoxDecoration(
color: backgroundColor,
borderRadius: BorderRadius.circular(radius),
border: Border.all(color: borderColor, width: borderWidth),
),
child: this,
);