Problem:
I have an overflow error when i use this widget (code below), How i solve the issue?
You can see the error in the image below.
Container(
height: 150,
decoration: BoxDecoration(
color: Colors.red,
borderRadius: BorderRadius.circular(20),
),
child: Container(
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(20),
)
)...