小编典典

flutter-按下容器?

flutter

我有这个容器:

  new Container(
    width: 500.0,
    padding: new EdgeInsets.fromLTRB(20.0, 40.0, 20.0, 40.0),
    color: Colors.green,
    child: new Column(
      children: [
        new Text("Ableitungen"),
      ]
    ),
  ),

当用户单击时Container,我希望onPressed()触发一种方法(例如,可以使用IconButton)。我怎样才能做到这一点Container呢?


阅读 278

收藏
2020-08-13

共1个答案

小编典典

我猜你可以GestureDetector像这样使用小部件:

new GestureDetector(
        onTap: (){
          print("Container clicked");
        },
        child: new Container(
          width: 500.0,
          padding: new EdgeInsets.fromLTRB(20.0, 40.0, 20.0, 40.0),
          color: Colors.green,
          child: new Column(
              children: [
                new Text("Ableitungen"),
              ]
          ),
        )
    );
2020-08-13