Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

remove line between two container flutter

I have 2 containers, but in the middle of 2 containers there are unwanted lines, how can I remove them? enter image description here

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,
                   ),
                 ),
               )
]);
like image 282
Rohmatul Laily Avatar asked Oct 17 '25 17:10

Rohmatul Laily


1 Answers

You can include border decoration to it.

decoration: BoxDecoration(
  color: Colors.white,
  border: Border.all(
    width: 0,
    color: Colors.white,
  ),
),

You can check this git issue which might be related.

like image 119
Yeasin Sheikh Avatar answered Oct 20 '25 14:10

Yeasin Sheikh



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!