Flutter 之 Gesturedetector点击区域

GestureDetector 如果要求child为Container全部为点击区域,需要设置Container的color。

代码示例:

    GestureDetector(
        onTap: () => {},
        child: Container(
          color: Colors.transparent,
          height: 60,
          width: MediaQuery.of(context).size.width,
          child: Center(),
        ));

你可能感兴趣的:(Flutter 之 Gesturedetector点击区域)