【发布时间】:2018-08-14 09:08:02
【问题描述】:
它有一些背景颜色。我希望容器后面的列表应该是可见的。为容器编写的代码如下:
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),
);
}
},
))
],
),
),
所以,我想要那个没有背景颜色的容器,并且容器后面的列表应该可见
【问题讨论】:
-
你确定这个背景是由你提供代码的Container绘制的吗?您能否提供更多背景信息?
-
@EliasProjahn 是的,背景是由我提供代码的容器绘制的。并且一旦检查我已经更新了问题。
-
你把容器放在哪里?是否在堆栈中?
-
@EliasProjahn 是的,容器在堆栈内。
-
@EliasProjahn 我明白了,通过使用 flex。感谢您的支持:)
标签: dart flutter flutter-layout