I have a container which look like this
which has some background color. I want the list behind the container should be visible. The code written for the container is below:
new Container(
margin: EdgeInsets.fromLTRB(50.0, 10.0, 50.0, 10.0),
width: _isTextFieldActive ? 150.0 : 80.0,
height: 40.0,
decoration: new BoxDecoration(
color: Color(0xFF98DAFC),
borderRadius: new BorderRadius.only(
topLeft: Radius.circular(0.0),
topRight: Radius.circular(32.0),
bottomLeft: Radius.circular(0.0),
bottomRight: Radius.circular(32.0))),
alignment: Alignment.bottomCenter,
child: new Row(
children: <Widget>[
new Container(
width: 40.0,
height: 40.0,
child: new Checkbox(value: true)),
new Container(
width: 40.0,
height: 40.0,
decoration: new BoxDecoration(
color: Color(0xFFDEDEDE),
borderRadius:
new BorderRadius.circular(32.0)),
child: new IconButton(
icon: Icon(Icons.search),
);
}
},
))
],
),
),
so,i want that container without background color and the list behind the container should visible
if i remove the above code i am getting the screen as below.