0 purchases
colorfulcontainer
This package wraps any flutter widget inside the container with specified colors.
@override
Widget build(BuildContext context) {
return Container(
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(5.0),
color: containerColor ?? Colors.blue.withOpacity(0.35),
),
child: Padding(
padding: const EdgeInsets.all(10.00),
child: child,
),
);
}
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.