RoundContainerView(- {Key? key,
- Widget? child,
- double? width,
- double minWidth = 0,
- double maxWidth = double.infinity,
- double? height,
- double borderRadius = 12,
- EdgeInsets padding = EdgeInsets.zero,
- EdgeInsets margin = EdgeInsets.zero,
- Color? backgroundColor = Colors.white,
- double borderWidth = 0,
- Color borderColor = const Color.fromARGB(255, 249, 249, 249),
- bool showShadow = false,
- double shadow = 0.05,
- Function? onTap}
)
Implementation
RoundContainerView({
Key? key,
this.child,
this.width,
this.minWidth = 0,
this.maxWidth = double.infinity,
this.height,
this.borderRadius = 12,
this.padding = EdgeInsets.zero,
this.margin = EdgeInsets.zero,
this.backgroundColor = Colors.white,
this.borderWidth = 0,
this.borderColor = const Color.fromARGB(255, 249, 249, 249),
this.showShadow = false,
this.shadow = 0.05,
this.onTap,
}) : super(key: key);