I want to make a container transparent like this:
Here's the container code:
: Container(child: Column(
children: [
Container(child: Text('Address: '), alignment: Alignment.centerLeft,),
Divider(color: Colors.grey,),
Container(child: Text('$address'), alignment: Alignment.centerLeft,),
],
),
color: Color(0xFF005D6C),
);
If I give color: Color(0xFF005D6C).withOpacity(0.5) then, it is just making the color light like this
How can I make the container transparent?