“Flutter Make Container Clickable” Ответ

Clickable Container Flutter

GestureDetector(
    onTap: () { 
        print("Tapped a Container"); 
    },
    child: Container(...),
)
Successful Squirrel

Flutter Make Container Clickable

Card(
  child: new InkWell(
    onTap: () {
      print("tapped");
    },
    child: Container(
      width: 100.0,
      height: 100.0,
    ),
  ),
),
Prickly Puffin

Flutter Make Container Clickable

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"),
              ]
          ),
        )
    );
Prickly Puffin

Ответы похожие на “Flutter Make Container Clickable”

Вопросы похожие на “Flutter Make Container Clickable”

Больше похожих ответов на “Flutter Make Container Clickable” по Dart

Смотреть популярные ответы по языку

Смотреть другие языки программирования