I have 2 containers, but in the middle of 2 containers there are unwanted lines, how can I remove them?
Column(
children: [
Container(height: 30,
color: Colors.white,
),
Containers(
height: 45,
color : Colors.orange,
child: Container(
height: AppTheme.space3,
decoration: BoxDecoration(
borderRadius: BorderRadius.only(
bottomLeft: Radius.circular(AppTheme.space4),
bottomRight: Radius.circular(AppTheme.space4),
),
color: Colors.white,
),
),
)
]);