GestureDetector 如果要求child为Container全部为点击区域,需要设置Container的color。
代码示例:
GestureDetector(
onTap: () => {},
child: Container(
color: Colors.transparent,
height: 60,
width: MediaQuery.of(context).size.width,
child: Center(),
));