【发布时间】:2018-12-11 19:19:29
【问题描述】:
TL;DR 需要容器填充垂直空间,以便它可以充当 ontap 侦听器。尝试了大多数解决方案,但似乎没有任何效果。
所以我想做的是让我的容器填满垂直空间,同时仍然具有固定的宽度。 Two first is what I have and third is what I want。这个想法是通过手势 ontap 侦听器使容器透明。如果有人对不同的解决方案有更好的想法,请随时提出建议。
Widget build(BuildContext context) {
return new GestureDetector(
onHorizontalDragUpdate: _move,
onHorizontalDragEnd: _handleDragEnd,
child: new Stack(
children: <Widget>[
new Positioned.fill(
child: new Row(
mainAxisAlignment: MainAxisAlignment.end,
children: <Widget>[
new Container(
child: new IconButton(
padding: new EdgeInsets.only(top: 16.0, bottom: 16.0, left: 24.0, right: 24.0),
icon: new Icon(Icons.warning),
color: Colors.black12,
onPressed: () {},
)
),
],
),
),
new SlideTransition(
position: new Tween<Offset>(
begin: Offset(0.0, 0.0),
end: const Offset(-0.6, 0.0),
).animate(_animation),
child: new Card(
child: new Row(
children: <Widget>[
new Container(
width: 20.0,
height: 20.0,
color: Colors.amber,
),
new Expanded(
child: new Column(
mainAxisSize: MainAxisSize.min,
children: <Widget>[
_getListTile(),
_ifStoplineIsToBeShown()
],
),
)
],
)
),
),
],
)
);
}
考虑到我尝试了很多不同的东西但似乎没有任何效果,我很确定我错过了一些东西。
我还上传了一张带调试画的图片here。
PS。我知道我已将高度设置为固定值,但这是显示容器的唯一方法。
【问题讨论】:
-
onHorizontalDragStart没有被调用吗?你的“固定宽度”在哪里?
标签: flutter