📜  手柄水龙头 - Flutter - Dart 代码示例

📅  最后修改于: 2022-03-11 14:48:02.478000             🧑  作者: Mango

代码示例1
GestureDetector(
          onDoubleTap: (){},
          onLongPress: (){},
          onTap: (){},
          child: Container(
            color: Colors.blue.shade100,
            width: 200.0,
            height: 200.0,
          ),
        ),