1. ホーム
  2. flutter

[解決済み] Flutter - Container onPressed?

2023-01-06 12:52:07

質問

このようなコンテナを持っています。

  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 ?

どのように解決するのですか?

というのは 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"),
              ]
          ),
        )
    );