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